Database Queries

总计101条数据
TimeDurationTypeQuery
  
20:04:13.9963.5 msSELECTSELECT * FROM "global"."vw_user_login" WHERE "id"=1000

20:04:14.0010.5 msSELECTSELECT * FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.0248.0 msSELECTSELECT COUNT(*) FROM (SELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND (s.parent_id is null) GROUP BY "s"."id" ORDER BY "s"."status", "s"."end_at", "s"."created_at" DESC) "c"

20:04:14.0332.5 msSELECTSELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND (s.parent_id is null) GROUP BY "s"."id" ORDER BY "s"."status", "s"."end_at", "s"."created_at" DESC LIMIT 20

20:04:14.0370.3 msSELECTSELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.0370.3 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.0380.3 msSELECTSELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106

20:04:14.0410.4 msSELECTSELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982

20:04:14.0411.5 msSELECTSELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018

20:04:14.0432.2 msSELECTSELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first

20:04:14.0463.8 msSELECTSELECT 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_task_group_head_of_relationships' and d.nspname = 'a57be577deb434' ORDER BY a.attnum;

20:04:14.05022.5 msSELECTselect 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_task_group_head_of_relationships' and ns.nspname='a57be577deb434' order by fns.nspname, fc.relname, a.attnum

20:04:14.0730.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106)

20:04:14.0730.3 msSELECTSELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.0741.6 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.0760.3 msSELECTSELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10

20:04:14.07742.1 msSELECTSELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id" IN (1596, 1641, 1647)) GROUP BY "object_id"

20:04:14.11925.1 msSELECTSELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id" IN (1596, 1641, 1647)) GROUP BY "object_id"

20:04:14.1440.7 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id" IN (1596, 1641, 1647) GROUP BY "parent_id"

20:04:14.1450.6 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id" IN (1596, 1641, 1647)) GROUP BY "parent_id"

20:04:14.1472.6 msSELECTSELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND ("parent_id"=1596) GROUP BY "s"."id" ORDER BY "s"."status", "s"."target_completed_at", "s"."created_at" DESC

20:04:14.1500.3 msSELECTSELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.1500.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.1510.2 msSELECTSELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106

20:04:14.1510.2 msSELECTSELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982

20:04:14.1510.2 msSELECTSELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018

20:04:14.1520.7 msSELECTSELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first

20:04:14.1530.3 msSELECTSELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106)

20:04:14.1530.2 msSELECTSELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.1540.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.1540.2 msSELECTSELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10

20:04:14.15434.2 msSELECTSELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id"=1645) GROUP BY "object_id"

20:04:14.18925.1 msSELECTSELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id"=1645) GROUP BY "object_id"

20:04:14.2140.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1596

20:04:14.2140.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1645 GROUP BY "parent_id"

20:04:14.2150.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id"=1645) GROUP BY "parent_id"

20:04:14.2162.3 msSELECTSELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND ("parent_id"=1645) GROUP BY "s"."id" ORDER BY "s"."status", "s"."target_completed_at", "s"."created_at" DESC

20:04:14.2190.3 msSELECTSELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.2190.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.2200.3 msSELECTSELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106

20:04:14.2200.2 msSELECTSELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982

20:04:14.2210.2 msSELECTSELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018

20:04:14.2210.7 msSELECTSELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first

20:04:14.2220.2 msSELECTSELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106)

20:04:14.2220.2 msSELECTSELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.2230.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.2230.2 msSELECTSELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10

20:04:14.22331.1 msSELECTSELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id"=1646) GROUP BY "object_id"

20:04:14.25521.3 msSELECTSELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id"=1646) GROUP BY "object_id"

20:04:14.2760.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1645

20:04:14.2770.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1646 GROUP BY "parent_id"

20:04:14.2770.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id"=1646) GROUP BY "parent_id"

20:04:14.2782.6 msSELECTSELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND ("parent_id"=1641) GROUP BY "s"."id" ORDER BY "s"."status", "s"."target_completed_at", "s"."created_at" DESC

20:04:14.2810.2 msSELECTSELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.2820.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.2820.3 msSELECTSELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106

20:04:14.2830.3 msSELECTSELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982

20:04:14.2830.2 msSELECTSELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018

20:04:14.2840.6 msSELECTSELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first

20:04:14.2850.2 msSELECTSELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106)

20:04:14.2860.2 msSELECTSELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.2860.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.2860.2 msSELECTSELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10

20:04:14.28729.4 msSELECTSELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id"=1657) GROUP BY "object_id"

20:04:14.31622.3 msSELECTSELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id"=1657) GROUP BY "object_id"

20:04:14.3390.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1641

20:04:14.3400.4 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1657 GROUP BY "parent_id"

20:04:14.3400.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id"=1657) GROUP BY "parent_id"

20:04:14.3412.5 msSELECTSELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND ("parent_id"=1647) GROUP BY "s"."id" ORDER BY "s"."status", "s"."target_completed_at", "s"."created_at" DESC

20:04:14.3440.2 msSELECTSELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.3450.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.3450.2 msSELECTSELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106

20:04:14.3450.2 msSELECTSELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982

20:04:14.3460.2 msSELECTSELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018

20:04:14.3460.7 msSELECTSELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first

20:04:14.3470.2 msSELECTSELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106)

20:04:14.3470.2 msSELECTSELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.3480.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.3480.2 msSELECTSELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10

20:04:14.34931.6 msSELECTSELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id" IN (1651, 1648)) GROUP BY "object_id"

20:04:14.38020.8 msSELECTSELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id" IN (1651, 1648)) GROUP BY "object_id"

20:04:14.4010.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1647

20:04:14.4020.6 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id" IN (1651, 1648) GROUP BY "parent_id"

20:04:14.4030.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id" IN (1651, 1648)) GROUP BY "parent_id"

20:04:14.4042.5 msSELECTSELECT s.* FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (("tree_path" @> (SELECT array_agg(DISTINCT s.tree_path) FROM "a57be577deb434"."tbl_tasks" "s" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON u.id = s.head_of LEFT JOIN "a57be577deb434"."tbl_clients" "client" ON client.id = s.client_id AND client.deleted = FALSE WHERE (true) AND ("s"."status"='0') AND (("s"."head_of"='1000')) AND (s.tree_path is not null)))) AND ("parent_id"=1648) GROUP BY "s"."id" ORDER BY "s"."status", "s"."target_completed_at", "s"."created_at" DESC

20:04:14.4070.2 msSELECTSELECT "id", "id" AS "key", "name", "sex" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.4070.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.4080.2 msSELECTSELECT "id", "id" AS "key", "title" AS "name", "project_id", "client_id", "head_of", "status", "target_completed_at", "start_at" FROM "a57be577deb434"."tbl_task_groups" WHERE "id"=106

20:04:14.4080.2 msSELECTSELECT "id", "id" AS "key", "name", "sales_rep", "logo" FROM "a57be577deb434"."tbl_clients" WHERE "id"=982

20:04:14.4080.2 msSELECTSELECT "id", "id" AS "key", "project_title" AS "name" FROM "a57be577deb434"."tbl_projects" WHERE "id"=1018

20:04:14.4090.7 msSELECTSELECT "c".* FROM "a57be577deb434"."tbl_task_group_head_of_relationships" "c" LEFT JOIN "a57be577deb434"."tbl_users" "u" ON "u"."id" = "c"."user_id" WHERE "c"."task_group_id"=106 ORDER BY pinyin1 nulls first, namecut1 nulls first, pinyin2 nulls first, namecut2 nulls first, pinyin3 nulls first, namecut3 nulls first, pinyin4 nulls first, namecut4 nulls first

20:04:14.4100.2 msSELECTSELECT * FROM "a57be577deb434"."tbl_task_group_head_of_relationships" WHERE ("user_id"=1000) AND ("task_group_id"=106)

20:04:14.4100.2 msSELECTSELECT "id", "id" AS "key", "name", "sex", "department_id" FROM "a57be577deb434"."tbl_users" WHERE "id"=1000

20:04:14.4100.2 msSELECTSELECT "id", "user_id", "meta_value" AS "name" FROM "a57be577deb434"."tbl_user_meta" WHERE ("meta_key"='avatar') AND ("user_id"=1000)

20:04:14.4110.2 msSELECTSELECT "id", "id" AS "key", "name" FROM "a57be577deb434"."tbl_departments" WHERE "id"=10

20:04:14.41124.5 msSELECTSELECT "object_id", count(*) as comment FROM "a57be577deb434"."tbl_comments" WHERE ("object_type"=101) AND ("object_id"=1649) GROUP BY "object_id"

20:04:14.43625.2 msSELECTSELECT "object_id", count(*) AS unread FROM "a57be577deb434"."tbl_unread_comments" WHERE ("object_type"=101) AND (remind_user_id = 1000 AND is_read = false) AND ("object_id"=1649) GROUP BY "object_id"

20:04:14.4610.4 msSELECTSELECT * FROM "a57be577deb434"."tbl_tasks" WHERE "id"=1648

20:04:14.4620.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE "parent_id"=1649 GROUP BY "parent_id"

20:04:14.4630.5 msSELECTSELECT "parent_id", count(*) as count FROM "a57be577deb434"."tbl_tasks" WHERE ("status"=1) AND ("parent_id"=1649) GROUP BY "parent_id"

20:04:14.4668.3 msINSERTINSERT INTO "global"."tbl_api_log" ("code", "schema", "user_id", "device_type", "url", "request", "response", "php_error", "time", "duration") VALUES (200, 'a57be577deb434', 1000, 5, 'vue/task/list', '{"TaskSearch":{"head_of":["1000"],"status":"0","d_id":"10"},"Filter":{"name":"end_at","sort":"ASC"},"page":"1","web_access_token":"YpBGkW4zT5P8ny843Fm6-I3il4Qq68YN"}', '{"code":2000,"result":{"list":[{"id":1596,"task_group_id":106,"title":"\u725b\u725b\u725b \u65b0\u5efa\u9879\u76ee\u6e05\u5355\uff0c\u770b\u770b\u5f00\u59cb\u7ed3\u675f\u65e5\u671f\u53c2\u6570\u662f\u5426\u6b63\u786e","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-05-30 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-14 15:20:55","updated_at":"2026-05-31 16:32:13","is_important":0,"complete_description":"","weight":15,"tree_path":"1596","progress":55,"start_at":"2026-05-22 00:00:00","end_at":"2026-05-30 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":true,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":1,"child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{"object_id":1596,"comment":3},"unreadComments":{},"parent":"","childCount":{"parent_id":1596,"count":2},"childDoneCount":{"parent_id":1596,"count":1},"index":1,"remain_time":"\u8d85\u65f62\u592921\u5c0f\u65f6","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":"","showTime":{"time_name":"\u622a\u6b62\u65f6\u95f4","time_display":"2026\u5e7405\u670830\u65e5","description":"\u6e05\u5355\u622a\u6b62\u65e5:2026\u5e7405\u670830\u65e5|\u6709 1 \u4e2a\u4efb\u52a1\u5b58\u5728\u8d85\u671f\u98ce\u9669"},"child":[{"id":1645,"task_group_id":106,"title":"AA","description":"\u597d\u7684\u5475\u5475\u65b9\u4fbf","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-06-12 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:30:56","updated_at":"2026-05-31 16:31:09","is_important":0,"complete_description":"","weight":0,"tree_path":"1596.1645","progress":10,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-12 00:00:00","parent_id":1596,"is_end_out":true,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":13,"start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{},"unreadComments":{},"parent":{"id":1596,"task_group_id":106,"title":"\u725b\u725b\u725b \u65b0\u5efa\u9879\u76ee\u6e05\u5355\uff0c\u770b\u770b\u5f00\u59cb\u7ed3\u675f\u65e5\u671f\u53c2\u6570\u662f\u5426\u6b63\u786e","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-05-30 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-14 15:20:55","updated_at":"2026-05-31 16:32:13","is_important":0,"complete_description":"","weight":15,"tree_path":"1596","progress":55,"start_at":"2026-05-22 00:00:00","end_at":"2026-05-30 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":true,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":1,"child_start_out_value":""},"childCount":{"parent_id":1645,"count":1},"childDoneCount":{},"index":2,"remain_time":"10\u59294\u5c0f\u65f6","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":1596,"showTime":{"time_name":"\u622a\u6b62\u65f6\u95f4","time_display":"2026\u5e7406\u670812\u65e5","description":"\u6b64\u4efb\u52a1\u7684\u7ed3\u675f\u65e5\u671f(2026\u5e7406\u670812\u65e5)\u665a\u4e8e\u9879\u76ee\u7684\u622a\u6b62\u65e5\u671f(2026\u5e7405\u670830\u65e5)\u3002\u8d85\u51fa13\u5929\u3002"},"child":[{"id":1646,"task_group_id":106,"title":"\u597d\u7684\u597d\u529e\u6cd5","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-06-05 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:31:33","updated_at":"2026-05-31 16:31:43","is_important":0,"complete_description":"","weight":0,"tree_path":"1596.1645.1646","progress":10,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-05 00:00:00","parent_id":1645,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{"object_id":1646,"comment":2},"unreadComments":{},"parent":{"id":1645,"task_group_id":106,"title":"AA","description":"\u597d\u7684\u5475\u5475\u65b9\u4fbf","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-06-12 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:30:56","updated_at":"2026-05-31 16:31:09","is_important":0,"complete_description":"","weight":0,"tree_path":"1596.1645","progress":10,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-12 00:00:00","parent_id":1596,"is_end_out":true,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":13,"start_out_value":"","child_end_out_value":"","child_start_out_value":""},"childCount":{},"childDoneCount":{},"index":3,"remain_time":"3\u59294\u5c0f\u65f6","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":false,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":1596,"showTime":{"time_name":"\u622a\u6b62\u65f6\u95f4","time_display":"2026\u5e7406\u670805\u65e5","description":""},"child":[],"start_at_out_day":"","end_at_out_day":""}],"start_at_out_day":"","end_at_out_day":""}],"start_at_out_day":"","end_at_out_day":""},{"id":1641,"task_group_id":106,"title":"\u4ece\u5c0f\u5230\u5927\u98ce\u590d\u53e4","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-05-31 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-27 22:37:38","updated_at":"2026-05-29 09:39:49","is_important":0,"complete_description":"","weight":0,"tree_path":"1641","progress":0,"start_at":"2026-05-29 00:00:00","end_at":"2026-05-31 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{"object_id":1641,"comment":1},"unreadComments":{},"parent":"","childCount":{"parent_id":1641,"count":1},"childDoneCount":{},"index":1,"remain_time":"\u8d85\u65f61\u592921\u5c0f\u65f6","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":"","showTime":{"time_name":"\u622a\u6b62\u65f6\u95f4","time_display":"2026\u5e7405\u670831\u65e5","description":""},"child":[{"id":1657,"task_group_id":106,"title":"\u5439\u5439\u98ce","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"","completed_at":"","created_by":1000,"created_at":"2026-06-01 10:25:31","updated_at":"2026-06-01 10:25:31","is_important":0,"complete_description":"","weight":0,"tree_path":"1641.1657","progress":0,"start_at":"","end_at":"","parent_id":1641,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{"object_id":1657,"comment":1},"unreadComments":{},"parent":{"id":1641,"task_group_id":106,"title":"\u4ece\u5c0f\u5230\u5927\u98ce\u590d\u53e4","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-05-31 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-27 22:37:38","updated_at":"2026-05-29 09:39:49","is_important":0,"complete_description":"","weight":0,"tree_path":"1641","progress":0,"start_at":"2026-05-29 00:00:00","end_at":"2026-05-31 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":""},"childCount":{},"childDoneCount":{},"index":2,"remain_time":"","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":1641,"showTime":[],"child":[],"start_at_out_day":"","end_at_out_day":""}],"start_at_out_day":"","end_at_out_day":""},{"id":1647,"task_group_id":106,"title":"9898","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-06-16 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:33:44","updated_at":"2026-05-31 16:35:11","is_important":1,"complete_description":"","weight":30,"tree_path":"1647","progress":33,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-16 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{"object_id":1647,"comment":1},"unreadComments":{},"parent":"","childCount":{"parent_id":1647,"count":3},"childDoneCount":{"parent_id":1647,"count":1},"index":1,"remain_time":"14\u59294\u5c0f\u65f6","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u91cd\u8981","status_display":"\u8fdb\u884c\u4e2d","root_id":"","showTime":{"time_name":"\u622a\u6b62\u65f6\u95f4","time_display":"2026\u5e7406\u670816\u65e5","description":""},"child":[{"id":1651,"task_group_id":106,"title":"new","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:36:33","updated_at":"2026-05-31 16:36:33","is_important":0,"complete_description":"","weight":0,"tree_path":"1647.1651","progress":0,"start_at":"","end_at":"","parent_id":1647,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{},"unreadComments":{},"parent":{"id":1647,"task_group_id":106,"title":"9898","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-06-16 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:33:44","updated_at":"2026-05-31 16:35:11","is_important":1,"complete_description":"","weight":30,"tree_path":"1647","progress":33,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-16 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":""},"childCount":{},"childDoneCount":{},"index":2,"remain_time":"","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":1647,"showTime":[],"child":[],"start_at_out_day":"","end_at_out_day":""},{"id":1648,"task_group_id":106,"title":"\u597dVV","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:35:29","updated_at":"2026-05-31 16:35:29","is_important":0,"complete_description":"","weight":0,"tree_path":"1647.1648","progress":0,"start_at":"","end_at":"","parent_id":1647,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{},"unreadComments":{},"parent":{"id":1647,"task_group_id":106,"title":"9898","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"2026-06-16 00:00:00","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:33:44","updated_at":"2026-05-31 16:35:11","is_important":1,"complete_description":"","weight":30,"tree_path":"1647","progress":33,"start_at":"2026-05-31 00:00:00","end_at":"2026-06-16 00:00:00","parent_id":"","is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":""},"childCount":{"parent_id":1648,"count":1},"childDoneCount":{},"index":2,"remain_time":"","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":true,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":1647,"showTime":[],"child":[{"id":1649,"task_group_id":106,"title":"\u597d\u5b9d\u5b9d","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:35:42","updated_at":"2026-05-31 16:35:42","is_important":0,"complete_description":"","weight":0,"tree_path":"1647.1648.1649","progress":0,"start_at":"","end_at":"","parent_id":1648,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":"","headOf":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"}},"taskGroup":{"id":106,"key":106,"name":"2020\u5e742\u6708\u5f00\u53d1\u90e8\u4efb\u52a1","project_id":1018,"client_id":982,"head_of":1000,"status":0,"target_completed_at":"2027-03-01 23:59:00","start_at":"2020-02-10 00:00:00","client":{"id":982,"key":982,"name":"\u4e2d\u56fd\u4fe1\u606f\u5b89\u5168\u7814\u7a76\u6240","sales_rep":1001,"logo":""},"project":{"id":1018,"key":1018,"name":"\u89c6\u9891\u534f\u4f5c\u53ca\u5373\u65f6\u901a\u8baf\u878d\u5408\u65b9\u6848"},"taskGroupHeadOfRelationships":[{"id":544,"task_group_id":106,"user_id":1000},{"id":546,"task_group_id":106,"user_id":5250},{"id":545,"task_group_id":106,"user_id":5461},{"id":543,"task_group_id":106,"user_id":5064}],"isHeadOf":{"id":544,"task_group_id":106,"user_id":1000},"bgcolor":"#FF7300","status_display":"\u8fdb\u884c\u4e2d"},"createdBy":{"id":1000,"key":1000,"name":"\u66f9\u6c38\u751f","sex":"M","department_id":10,"avatar":{"id":1,"user_id":1000,"name":"\/files\/cdn\/\/avatar\/618545c1-a2ce-3918-9d51-25924baf6d6f.jpg"},"department":{"id":10,"key":10,"name":"\u8f6f\u4ef6\u5f00\u53d1"}},"commentCount":{},"unreadComments":{},"parent":{"id":1648,"task_group_id":106,"title":"\u597dVV","description":"","client_id":"","head_of":1000,"status":0,"target_completed_at":"","completed_at":"","created_by":1000,"created_at":"2026-05-31 16:35:29","updated_at":"2026-05-31 16:35:29","is_important":0,"complete_description":"","weight":0,"tree_path":"1647.1648","progress":0,"start_at":"","end_at":"","parent_id":1647,"is_end_out":false,"is_start_out":false,"is_child_end_out":false,"is_child_start_out":false,"end_out_value":"","start_out_value":"","child_end_out_value":"","child_start_out_value":""},"childCount":{},"childDoneCount":{},"index":3,"remain_time":"","target_completed_at_display":"","unread":0,"can_update":true,"can_delete":true,"can_create":false,"can_select":true,"bgcolor":"#FF7300","is_important_display":"\u666e\u901a","status_display":"\u8fdb\u884c\u4e2d","root_id":1647,"showTime":[],"child":[],"start_at_out_day":"","end_at_out_day":""}],"start_at_out_day":"","end_at_out_day":""}],"start_at_out_day":"","end_at_out_day":""}],"can_create":true,"pagenation":{"totalcount":3,"thispage":1,"pagesize":20}},"status":1,"msg":[{"name":"success","success":"\u6210\u529f\u83b7\u53d6\u6570\u636e","error":""}],"mod":0,"ip":"117.133.84.85","ua":"Mozilla\/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/148.0.0.0 Safari\/537.36"}', FALSE, '2026-06-01 20:04:14', 496009216) RETURNING "id"