12:39:43.370 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
12:39:43.370 | trace | yii\base\Module::getModule | Loading module: debug |
12:39:43.371 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
12:39:43.371 | trace | yii\redis\Connection::open | Opening redis DB connection: redis.server.local:6379, database=1 |
12:39:43.371 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SELECT |
12:39:43.371 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.371 | trace | yii\base\Module::getModule | Loading module: gii |
12:39:43.371 | trace | yii\base\Application::bootstrap | Bootstrap with yii\gii\Module::bootstrap() |
12:39:43.371 | trace | yii\web\UrlManager::parseRequest | No matching URL rules. Using default URL parsing logic. |
12:39:43.371 | trace | yii\web\Application::handleRequest | Route requested: 'v2/project/save-edit' |
12:39:43.371 | trace | yii\base\Module::getModule | Loading module: v2 |
12:39:43.372 | info | yii\web\Session::open | Session started |
12:39:43.372 | info | yii\db\Connection::open | Opening DB connection: pgsql:host=postgresql.server.local;port=5432;dbname=beta |
12:39:43.374 | info | yii\db\Command::query | SELECT * FROM "global"."vw_user_login" WHERE "access_token"='rpAaho7HBg3VJ1vNP7yVtm0Uw5j2xu-u' |
12:39:43.377 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.377 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.377 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.378 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.378 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
12:39:43.379 | trace | yii\base\Controller::runAction | Route to run: v2/project/save-edit |
12:39:43.379 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.380 | trace | uranus\rbac\DbManager::checkAccessFromCache | Checking role: Admin |
12:39:43.380 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\v2\controllers\ProjectController::actionSaveEdit() |
12:39:43.380 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_projects" WHERE "id"='3812' |
12:39:43.381 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.381 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.381 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.382 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.382 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'purchaseType' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'projectProductTypes' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'salesForecast' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'projectRemindReceivers' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'id' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'purchaseType' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'projectProductTypes' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'salesForecast' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'projectRemindReceivers' in 'app\models\Projects'. |
12:39:43.383 | trace | yii\base\Model::onUnsafeAttribute | Failed to set unsafe attribute 'id' in 'app\models\Projects'. |
12:39:43.383 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE "object_id"=3812 |
12:39:43.383 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE ("term_id"=13) AND ("id" IN (5, 129, 181, 205, 199, 331)) ORDER BY "sort" |
12:39:43.384 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.384 | info | yii\db\Command::query | 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_term_taxonomies'
and d.nspname = 'a57be577deb434'
ORDER BY
a.attnum; |
12:39:43.389 | info | yii\db\Command::query | 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_term_taxonomies'
and ns.nspname='a57be577deb434'
order by
fns.nspname, fc.relname, a.attnum |
12:39:43.397 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.397 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: SET |
12:39:43.399 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_projects" WHERE ("client_id"='1121') AND ("project_title"='测试') AND ("id" != 3812)) |
12:39:43.400 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_contract_types" WHERE "id"='1') |
12:39:43.400 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='1121') |
12:39:43.401 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_project_progresses" WHERE "id"='5') |
12:39:43.401 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_project_statuses" WHERE "id"='1') |
12:39:43.402 | info | yii\db\Command::query | SELECT EXISTS(SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=5295) |
12:39:43.402 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_project_product_types" WHERE "project_id"=3812 |
12:39:43.403 | info | yii\db\Command::execute | DELETE FROM "a57be577deb434"."tbl_project_product_types" WHERE "project_id"=3812 |
12:39:43.403 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
12:39:43.404 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.404 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.405 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_object_change_logs" ("act", "attribute", "object_id", "object_type", "created_by", "created_at", "new_value", "old_value", "description") VALUES (2, 'comment', 3812, 1, 1000, 'now()', '["\u6d4b\u8bd5\u6d4b\u8bd5\u6d4b\u8bd5"]', '["\u6d4b\u8bd5"]', '{"d1":"\u66f9\u6c38\u751f","d2":"\u66f4\u65b0\u4e86","d3":"\u5907\u6ce8","d4":["\u6d4b\u8bd5\u6d4b\u8bd5\u6d4b\u8bd5"]}') |
12:39:43.406 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
12:39:43.406 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='1121' |
12:39:43.407 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.407 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.408 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.408 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.408 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_user_action_logs" ("act", "attribute", "object_id", "object_type", "created_by", "created_at", "new_value", "old_value", "users", "description") VALUES (2, 'comment', 3812, 1, 1000, 'now()', '["\u6d4b\u8bd5\u6d4b\u8bd5\u6d4b\u8bd5"]', '["\u6d4b\u8bd5"]', array[5295], '{"d1":"\u66f9\u6c38\u751f","d2":"\u66f4\u65b0\u4e86","d3":"\u5907\u6ce8","d4":["\u6d4b\u8bd5\u6d4b\u8bd5\u6d4b\u8bd5"]}') |
12:39:43.417 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_projects" SET "client_id"=1121, "project_status"=1, "project_progress"=5, "budget"='0', "profit_pct"='0', "updated_at"='now()', "comment"='测试测试测试', "contract_type"=1, "used_client"=NULL, "from_contact"=NULL WHERE "id"=3812 |
12:39:43.419 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_project_change_logs" WHERE ("project_id"=3812) AND ("end_at" IS NULL) ORDER BY "id" DESC LIMIT 1 |
12:39:43.420 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.420 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.421 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.421 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.421 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Projects', 3812, 'a:1:{s:7:"comment";s:18:"测试测试测试";}', '', 1000, '120.235.217.244') |
12:39:43.422 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='1121' |
12:39:43.423 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
12:39:43.423 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE "object_id"=3812 |
12:39:43.423 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE ("term_id"=9) AND ("id" IN (5, 129, 181, 205, 199, 331)) ORDER BY "sort" |
12:39:43.424 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE "id"=129 |
12:39:43.424 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE "id"='129' |
12:39:43.424 | info | yii\db\Command::execute | DELETE FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE ("object_id"=3812) AND ("term_id"=9) |
12:39:43.425 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.425 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.425 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_term_taxonomy_relationships" ("term_id", "taxonomy_id", "object_id") VALUES (9, 129, 3812) |
12:39:43.426 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE "id"=181 |
12:39:43.427 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_term_taxonomies" WHERE "id"='181' |
12:39:43.427 | info | yii\db\Command::execute | DELETE FROM "a57be577deb434"."tbl_term_taxonomy_relationships" WHERE ("object_id"=3812) AND ("term_id"=13) |
12:39:43.428 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_term_taxonomy_relationships" ("term_id", "taxonomy_id", "object_id") VALUES (13, 181, 3812) |
12:39:43.429 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_project_remind_receivers" WHERE "project_id"=3812 |
12:39:43.429 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.429 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.429 | info | yii\db\Command::execute | DELETE FROM "a57be577deb434"."tbl_project_remind_receivers" WHERE "project_id"=3812 |
12:39:43.430 | info | yii\db\Command::query | INSERT INTO "a57be577deb434"."tbl_project_remind_receivers" ("project_id", "user_id") VALUES (3812, 1017) RETURNING "id" |
12:39:43.431 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ProjectRemindReceivers', 1604, 'a:3:{s:2:"id";i:1604;s:10:"project_id";i:3812;s:7:"user_id";s:4:"1017";}', '', 1000, '120.235.217.244') |
12:39:43.432 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_sales_contracts" WHERE "from_project"=3812 |
12:39:43.433 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='1121' |
12:39:43.434 | info | yii\db\Command::execute | UPDATE "a57be577deb434"."tbl_clients" SET "updated_at"='now()' WHERE "id"=1121 |
12:39:43.436 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_client_am_change_logs" WHERE ("client_id"=1121) AND ("sales_rep" IS NULL) AND ("end_at" IS NULL) ORDER BY "id" DESC LIMIT 1 |
12:39:43.451 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.451 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.451 | info | yii\db\Command::query | INSERT INTO "a57be577deb434"."tbl_client_am_change_logs" ("client_id", "sales_rep", "start_from", "end_at") VALUES (1121, 5295, 'now()', NULL) RETURNING "id" |
12:39:43.452 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ClientAmChangeLogs', 164997, 'a:5:{s:2:"id";i:164997;s:9:"client_id";i:1121;s:9:"sales_rep";i:5295;s:10:"start_from";s:5:"now()";s:6:"end_at";N;}', '', 1000, '120.235.217.244') |
12:39:43.453 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Clients', 1121, 'a:0:{}', '', 1000, '120.235.217.244') |
12:39:43.454 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000 |
12:39:43.455 | info | yii\db\Command::query | 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 (2, 'update', 1121, 10, 3812, 1, 1000, '[3812]', '[3812]', '{"d1":"\u66f9\u6c38\u751f","d2":"\u66f4\u65b0\u4e86","d3":"\u5546\u673a","d4":["\u6d4b\u8bd5"]}') RETURNING "id" |
12:39:43.456 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ObjectChangeLogs', 509570, 'a:13:{s:2:"id";i:509570;s:9:"object_id";s:4:"1121";s:11:"object_type";i:10;s:9:"target_id";i:3812;s:18:"target_object_type";i:1;s:3:"act";i:2;s:9:"attribute";s:6:"update";s:9:"old_value";s:6:"[3812]";s:9:"new_value";s:6:"[3812]";s:11:"description";s:95:"{"d1":"\u66f9\u6c38\u751f","d2":"\u66f4\u65b0\u4e86","d3":"\u5546\u673a","d4":["\u6d4b\u8bd5"]}";s:10:"created_by";i:1000;s:10:"created_at";N;s:9:"is_delete";N;}', '', 1000, '120.235.217.244') |
12:39:43.457 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_clients" WHERE "id"='1121' |
12:39:43.457 | info | yii\db\Command::query | SELECT COUNT(*) FROM "a57be577deb434"."tbl_projects" WHERE ("project_status"=3) AND ("bargain_date" >= '2025-01-01 00:00:00') AND ("bargain_date" <= '2025-12-31 23:59:59') AND ("client_id"=1121) |
12:39:43.458 | info | yii\db\Command::query | SELECT * FROM "a57be577deb434"."tbl_client_am_change_logs" WHERE ("client_id"=1121) AND ("sales_rep" IS NULL) AND ("end_at" IS NULL) ORDER BY "id" DESC LIMIT 1 |
12:39:43.472 | info | yii\db\Command::query | INSERT INTO "a57be577deb434"."tbl_client_am_change_logs" ("client_id", "sales_rep", "start_from", "end_at") VALUES (1121, 5295, 'now()', NULL) RETURNING "id" |
12:39:43.473 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('INSERT', 'app\models\ClientAmChangeLogs', 164998, 'a:5:{s:2:"id";i:164998;s:9:"client_id";i:1121;s:9:"sales_rep";i:5295;s:10:"start_from";s:5:"now()";s:6:"end_at";N;}', '', 1000, '120.235.217.244') |
12:39:43.474 | info | yii\db\Command::execute | INSERT INTO "a57be577deb434"."tbl_action_logs" ("action", "object_type", "object_id", "new_value", "old_value", "created_by", "ip_address") VALUES ('UPDATE', 'app\models\Clients', 1121, 'a:0:{}', '', 1000, '120.235.217.244') |
12:39:43.481 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: INCR |
12:39:43.481 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: HSET |
12:39:43.481 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: LPUSH |
12:39:43.482 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: INCR |
12:39:43.482 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: HSET |
12:39:43.482 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: LPUSH |
12:39:43.482 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: GET |
12:39:43.482 | trace | yii\redis\Connection::executeCommand | Executing Redis Command: MGET |
12:39:43.482 | info | yii\db\Command::query | INSERT INTO "global"."tbl_api_log" ("code", "schema", "user_id", "device_type", "version_code", "url", "request", "response", "php_error", "time") VALUES (200, 'a57be577deb434', 1000, 0, 261, 'v2/project/save-edit', '{"Projects":{"purchaseType":"129","comment":"\u6d4b\u8bd5\u6d4b\u8bd5\u6d4b\u8bd5","projectProductTypes":"","salesForecast":"181","project_status":"1","used_client":"","project_progress":"5","contract_type":"1","project_title":"\u6d4b\u8bd5","description":"","projectRemindReceivers":["1017"],"from_contact":"","id":"3812","bargain_date":"2025-06-27","client_id":"1121"},"access_token":"rpAaho7HBg3VJ1vNP7yVtm0Uw5j2xu-u","ProjectArchitects":{"5085":"0.0","5248":"0.0","5296":"0.0","1001":"0.0","1015":"0.0","1017":"0.0","1022":"0.0","1023":"0.0"},"device_type":"0","version_code":"261","token":"f5d3c62493c7210beefda820603dff2e","posttime":"1750999183"}', '{"code":200,"data":"","status":1,"msg":[{"name":"success","success":"\u5546\u673a\u5df2\u88ab\u6210\u529f\u4fee\u6539","error":""}]}', FALSE, '2025-06-27 12:39:43') RETURNING "id" |