10:26:00.703 | 2.7 ms | SELECT | SELECT * FROM "global"."vw_user_login" WHERE "access_token"='LaARkbjpq8ODkVzzYWTT4va5Qt3CsuSp' |
10:26:00.706 | 1.1 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1017 |
10:26:00.711 | 34.5 ms | SELECT | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
t.typname AS data_type,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) AS is_autoinc,
array_to_string((select array_agg(enumlabel) from pg_enum where enumtypid=a.atttypid)::varchar[],',') as enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT join pg_constraint ct on ct.conrelid=c.oid and ct.contype='p'
WHERE
a.attnum > 0 and t.typname != ''
and c.relname = 'tbl_location'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
10:26:00.745 | 13.2 ms | SELECT | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='tbl_location'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
10:26:00.759 | 2.9 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_location" ("created_by", "address", "geolocation", "updated_at") VALUES (1017, '北京市海淀区蓝靛厂东路靠近金源时代商务中心', '(116.2894083658854,39.96064860026042)', '2025-07-11 10:23') RETURNING "id" |
10:26:00.763 | 1.0 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\Location', 19232, 'a:6:{s:2:"id";i:19232;s:11:"geolocation";s:37:"(116.2894083658854,39.96064860026042)";s:10:"created_by";i:1017;s:7:"address";s:63:"北京市海淀区蓝靛厂东路靠近金源时代商务中心";s:10:"created_at";N;s:10:"updated_at";s:19:"2025-07-11 10:23:00";}', '', 1017, '223.104.40.121') |
10:26:00.764 | 0.8 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Location', 19232, 'a:0:{}', '', 1017, '223.104.40.121') |
10:26:00.765 | 0.8 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_location" ("created_by", "address", "geolocation", "updated_at") VALUES (1017, '北京市海淀区蓝靛厂东路靠近北京世纪星豪酒店', '(116.2889982096354,39.96073404947916)', '2025-07-11 10:25') RETURNING "id" |
10:26:00.766 | 0.8 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\Location', 19233, 'a:6:{s:2:"id";i:19233;s:11:"geolocation";s:37:"(116.2889982096354,39.96073404947916)";s:10:"created_by";i:1017;s:7:"address";s:63:"北京市海淀区蓝靛厂东路靠近北京世纪星豪酒店";s:10:"created_at";N;s:10:"updated_at";s:19:"2025-07-11 10:25:00";}', '', 1017, '223.104.40.121') |
10:26:00.767 | 0.8 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Location', 19233, 'a:0:{}', '', 1017, '223.104.40.121') |
10:26:00.768 | 0.5 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='2815') |
10:26:00.768 | 0.9 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"='8279') |
10:26:00.769 | 0.2 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1017) |
10:26:00.770 | 0.2 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1017) |
10:26:00.770 | 0.2 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_location" WHERE "id"=19232) |
10:26:00.770 | 0.1 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_location" WHERE "id"=19233) |
10:26:00.771 | 3.2 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_pre_sales" WHERE "case_id"='8279' ORDER BY "id" DESC |
10:26:00.774 | 0.9 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"='8279' |
10:26:00.775 | 6.3 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_pre_sales" ("case_id", "client_concerns", "client_id", "description", "end_at", "has_following_work", "is_draft", "pre_sales_assessment", "service_id", "start_at", "updated_at", "created_by", "engineer_id", "indistance", "location_in_id", "outdistance", "location_out_id", "ticket_no") VALUES (8279, '', 2815, '', '2025-07-11 10:25:00', FALSE, FALSE, '', 273, '2025-07-11 10:23:00', 'now()', 1017, 1017, 975.76563863347, 19232, 943.13490148381, 19233, 'PS250711001001') RETURNING "id" |
10:26:00.782 | 0.8 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\PreSales', 1837, 'a:25:{s:2:"id";i:1837;s:9:"client_id";s:4:"2815";s:8:"start_at";s:19:"2025-07-11 10:23:00";s:11:"description";s:0:"";s:15:"client_concerns";s:0:"";s:20:"pre_sales_assessment";s:0:"";s:11:"engineer_id";i:1017;s:10:"created_by";i:1017;s:10:"created_at";N;s:10:"updated_at";s:19:"1970-01-01 08:00:00";s:22:"following_work_content";N;s:14:"project_status";N;s:6:"end_at";s:19:"2025-07-11 10:25:00";s:18:"has_following_work";s:1:"0";s:11:"location_id";N;s:8:"is_draft";s:1:"0";s:7:"case_id";s:4:"8279";s:10:"service_id";s:3:"273";s:14:"location_in_id";i:19232;s:15:"location_out_id";i:19233;s:9:"ticket_no";s:14:"PS250711001001";s:18:"client_document_id";N;s:20:"client_document_file";N;s:10:"indistance";s:16:"975.765638633466";s:11:"outdistance";s:16:"943.134901483808";}', '', 1017, '223.104.40.121') |
10:26:00.783 | 0.6 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='2815' |
10:26:00.784 | 1.3 ms | DELETE | DELETE FROM "a57be577deb434"."tbl_attachement_relationships" WHERE ("object_type"=4) AND ("object_id"=1837) |
10:26:00.785 | 3.3 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_attachement_relationships" ("object_type", "object_id", "attachment_id") VALUES (4, 1837, 24867) |
10:26:00.788 | 1.1 ms | DELETE | DELETE FROM "a57be577deb434"."tbl_attachement_relationships" WHERE ("object_type"=23) AND ("object_id"=1837) |
10:26:00.790 | 1.4 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_contact_attend_pre_sales" WHERE "pre_sales_id"=1837 |
10:26:00.792 | 0.4 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_contacts" WHERE 0=1 |
10:26:00.793 | 2.4 ms | SELECT | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
t.typname AS data_type,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) AS is_autoinc,
array_to_string((select array_agg(enumlabel) from pg_enum where enumtypid=a.atttypid)::varchar[],',') as enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT join pg_constraint ct on ct.conrelid=c.oid and ct.contype='p'
WHERE
a.attnum > 0 and t.typname != ''
and c.relname = 'tbl_contact_attend_pre_sales'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
10:26:00.795 | 9.0 ms | SELECT | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='tbl_contact_attend_pre_sales'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
10:26:00.805 | 0.8 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_contacts" WHERE "id"='5245') |
10:26:00.805 | 0.2 ms | SELECT | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_pre_sales" WHERE "id"=1837) |
10:26:00.806 | 3.3 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_contact_attend_pre_sales" ("contact_id", "pre_sales_id") VALUES (5245, 1837) RETURNING "pre_sales_id", "contact_id" |
10:26:00.809 | 0.9 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ContactAttendPreSales', 0, 'a:3:{s:2:"id";N;s:12:"pre_sales_id";i:1837;s:10:"contact_id";i:5245;}', '', 1017, '223.104.40.121') |
10:26:00.810 | 0.2 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_pre_sales" WHERE "id"=1837 |
10:26:00.811 | 0.3 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1017 |
10:26:00.811 | 2.2 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_object_change_logs" ("act", "attribute", "object_id", "object_type", "created_by", "created_at", "new_value", "old_value", "description") VALUES (1, 'create', 1837, 4, 1017, '2025-07-11 10:26:00', '{"id":1837,"client_id":2815,"start_at":"2025-07-11 10:23:00","description":"","client_concerns":"","pre_sales_assessment":"","engineer_id":1017,"created_by":1017,"created_at":"2025-07-11 10:26:00","updated_at":"2025-07-11 10:26:00","following_work_content":null,"project_status":null,"end_at":"2025-07-11 10:25:00","has_following_work":false,"location_id":null,"is_draft":false,"case_id":8279,"service_id":273,"location_in_id":19232,"location_out_id":19233,"ticket_no":"PS250711001001","client_document_id":null,"client_document_file":null,"indistance":975.76563863347,"outdistance":943.13490148381}', '{"id":1837,"client_id":2815,"start_at":"2025-07-11 10:23:00","description":"","client_concerns":"","pre_sales_assessment":"","engineer_id":1017,"created_by":1017,"created_at":"2025-07-11 10:26:00","updated_at":"2025-07-11 10:26:00","following_work_content":null,"project_status":null,"end_at":"2025-07-11 10:25:00","has_following_work":false,"location_id":null,"is_draft":false,"case_id":8279,"service_id":273,"location_in_id":19232,"location_out_id":19233,"ticket_no":"PS250711001001","client_document_id":null,"client_document_file":null,"indistance":975.76563863347,"outdistance":943.13490148381}', '{"d1":"\u8f66\u660e\u98de","d2":"\u521b\u5efa\u4e86","d3":"\u552e\u524d\u5de5\u5355","d4":[]}') RETURNING "id" |
10:26:00.814 | 0.7 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ObjectChangeLogs', 510507, 'a:13:{s:2:"id";i:510507;s:9:"object_id";i:1837;s:11:"object_type";i:4;s:9:"target_id";N;s:18:"target_object_type";N;s:3:"act";i:1;s:9:"attribute";s:6:"create";s:9:"old_value";s:599:"{"id":1837,"client_id":2815,"start_at":"2025-07-11 10:23:00","description":"","client_concerns":"","pre_sales_assessment":"","engineer_id":1017,"created_by":1017,"created_at":"2025-07-11 10:26:00","updated_at":"2025-07-11 10:26:00","following_work_content":null,"project_status":null,"end_at":"2025-07-11 10:25:00","has_following_work":false,"location_id":null,"is_draft":false,"case_id":8279,"service_id":273,"location_in_id":19232,"location_out_id":19233,"ticket_no":"PS250711001001","client_document_id":null,"client_document_file":null,"indistance":975.76563863347,"outdistance":943.13490148381}";s:9:"new_value";s:599:"{"id":1837,"client_id":2815,"start_at":"2025-07-11 10:23:00","description":"","client_concerns":"","pre_sales_assessment":"","engineer_id":1017,"created_by":1017,"created_at":"2025-07-11 10:26:00","updated_at":"2025-07-11 10:26:00","following_work_content":null,"project_status":null,"end_at":"2025-07-11 10:25:00","has_following_work":false,"location_id":null,"is_draft":false,"case_id":8279,"service_id":273,"location_in_id":19232,"location_out_id":19233,"ticket_no":"PS250711001001","client_document_id":null,"client_document_file":null,"indistance":975.76563863347,"outdistance":943.13490148381}";s:11:"description";s:93:"{"d1":"\u8f66\u660e\u98de","d2":"\u521b\u5efa\u4e86","d3":"\u552e\u524d\u5de5\u5355","d4":[]}";s:10:"created_by";i:1017;s:10:"created_at";s:19:"2025-07-11 10:26:00";s:9:"is_delete";N;}', '', 1017, '223.104.40.121') |
10:26:00.814 | 0.2 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=8279 |
10:26:00.815 | 0.8 ms | UPDATE | UPDATE "a57be577deb434"."tbl_cases" SET "updated_at"='now()' WHERE "id"=8279 |
10:26:00.816 | 0.7 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Cases', 8279, 'a:1:{s:8:"start_at";s:19:"2025-07-11 08:00:00";}', '', 1017, '223.104.40.121') |
10:26:00.817 | 0.3 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1017 |
10:26:00.817 | 2.6 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_object_change_logs" ("act", "attribute", "object_id", "object_type", "target_id", "target_object_type", "created_by", "new_value", "old_value", "description") VALUES (1, 'create', 8279, 18, 1837, 4, 1017, '[1837]', '[1837]', '{"d1":"\u8f66\u660e\u98de","d2":"\u521b\u5efa\u4e86","d3":"\u552e\u524d\u5de5\u5355","d4":["\u5de5\u5355\u7f16\u53f7:PS250711001001"]}') RETURNING "id" |
10:26:00.820 | 0.7 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ObjectChangeLogs', 510508, 'a:13:{s:2:"id";i:510508;s:9:"object_id";i:8279;s:11:"object_type";i:18;s:9:"target_id";i:1837;s:18:"target_object_type";i:4;s:3:"act";i:1;s:9:"attribute";s:6:"create";s:9:"old_value";s:6:"[1837]";s:9:"new_value";s:6:"[1837]";s:11:"description";s:134:"{"d1":"\u8f66\u660e\u98de","d2":"\u521b\u5efa\u4e86","d3":"\u552e\u524d\u5de5\u5355","d4":["\u5de5\u5355\u7f16\u53f7:PS250711001001"]}";s:10:"created_by";i:1017;s:10:"created_at";N;s:9:"is_delete";N;}', '', 1017, '223.104.40.121') |
10:26:00.821 | 0.2 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_cases" WHERE "id"=8279 |
10:26:00.821 | 0.3 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"=2815 |
10:26:00.822 | 0.3 ms | SELECT | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1017 |
10:26:00.822 | 3.4 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_user_action_logs" ("act", "attribute", "object_id", "object_type", "target_id", "target_object_type", "created_by", "new_value", "old_value", "users", "description") VALUES (1, 'create', 8279, 18, 1837, 4, 1017, '1837', '1837', array[1004,1017], '{"d1":"\u8f66\u660e\u98de","d2":"\u521b\u5efa\u4e86","d3":"\u552e\u524d\u5de5\u5355","d4":["\u5de5\u5355\u7f16\u53f7:PS250711001001"]}') RETURNING "id" |
10:26:00.826 | 0.7 ms | INSERT | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\UserActionLogs', 137123, 'a:15:{s:2:"id";i:137123;s:9:"object_id";i:8279;s:11:"object_type";i:18;s:9:"target_id";i:1837;s:18:"target_object_type";i:4;s:3:"act";i:1;s:9:"attribute";s:6:"create";s:9:"old_value";s:4:"1837";s:9:"new_value";s:4:"1837";s:5:"users";O:17:"yii\db\Expression":2:{s:10:"expression";s:16:"array[1004,1017]";s:6:"params";a:0:{}}s:11:"description";s:134:"{"d1":"\u8f66\u660e\u98de","d2":"\u521b\u5efa\u4e86","d3":"\u552e\u524d\u5de5\u5355","d4":["\u5de5\u5355\u7f16\u53f7:PS250711001001"]}";s:10:"created_by";i:1017;s:10:"created_at";N;s:9:"is_delete";N;s:9:"parent_id";N;}', '', 1017, '223.104.40.121') |
10:26:00.827 | 1.0 ms | INSERT | INSERT INTO "global"."tbl_api_log" ("code", "schema", "user_id", "device_type", "version_code", "url", "request", "response", "php_error", "time") VALUES (200, 'a57be577deb434', 1017, 2, 1141, 'v2/pre-sales/save-new', '{"PreSales":{"attachmentFiles":["24867"],"attendedContacts":["5245"],"case_id":"8279","client_concerns":"","client_id":"2815","description":"","end_at":"2025-07-11 10:25","has_following_work":"0","is_draft":"0","location_in_address":"\u5317\u4eac\u5e02\u6d77\u6dc0\u533a\u84dd\u975b\u5382\u4e1c\u8def\u9760\u8fd1\u91d1\u6e90\u65f6\u4ee3\u5546\u52a1\u4e2d\u5fc3","location_in_distance":"975.765638633466","location_in_lat":"39.96064860026042","location_in_lng":"116.2894083658854","location_in_updated_at":"2025-07-11 10:23","location_out_address":"\u5317\u4eac\u5e02\u6d77\u6dc0\u533a\u84dd\u975b\u5382\u4e1c\u8def\u9760\u8fd1\u5317\u4eac\u4e16\u7eaa\u661f\u8c6a\u9152\u5e97","location_out_distance":"943.134901483808","location_out_lat":"39.96073404947916","location_out_lng":"116.2889982096354","location_out_updated_at":"2025-07-11 10:25","pre_sales_assessment":"","service_id":"273","start_at":"2025-07-11 10:23"},"access_token":"LaARkbjpq8ODkVzzYWTT4va5Qt3CsuSp","device_type":"2","posttime":"1752200704","token":"23d3b750fae5db3d2b120478a4de2665","version_code":"1141"}', '{"code":200,"data":{"id":1837},"status":1,"msg":[{"name":"success","success":"\u65b0\u552e\u524d\u5de5\u5355\u5df2\u521b\u5efa\u6210\u529f","error":""}]}', FALSE, '2025-07-11 10:26:00') RETURNING "id" |