分析禅道数据库

一、我的地盘相关的表

[if !supportLists]· [endif]zt_todo,待办事宜表。

二、产品相关的表

[if !supportLists]· [endif]zt_product,记录了产品相关的信息。

[if !supportLists]· [endif]zt_productplan,记录了产品的计划信息。

[if !supportLists]· [endif]zt_story,是非常重要的一张表,记录了系统中所有的需求记录。

[if !supportLists]· [endif]zt_storyspec,记录了需求的描述信息。

[if !supportLists]· [endif]zt_storystage,记录需求的阶段信息。

[if !supportLists]· [endif]zt_release,记录了产品的发布信息。这张表同时也和zt_build互相关联。

[if !supportLists]· [endif]zt_branch,记录产品的分支和平台信息。

三、项目相关的表

[if !supportLists]· [endif]zt_project,项目表。

[if !supportLists]· [endif]zt_projectproduct,记录了项目和产品之间的关联关系。

[if !supportLists]· [endif]zt_projectstory,记录了项目中需要做的需求列表。

[if !supportLists]· [endif]zt_task,任务表。

[if !supportLists]· [endif]zt_burn,燃尽图数据表。燃尽图就是根据这张表的数据画出来的。

[if !supportLists]· [endif]zt_team,记录了项目中的团队成员。

[if !supportLists]· [endif]zt_build,记录了项目中产品的版本列表。

[if !supportLists]· [endif]zt_taskestimate,项目任务工时表。

四、测试相关的表

[if !supportLists]· [endif]zt_bug,bug表,也是大家非常熟悉的一张表了。

[if !supportLists]· [endif]zt_case,用例表。记录了所有的测试用例。

[if !supportLists]· [endif]zt_casestep,则是记录了用例相关的步骤,包括历史。

[if !supportLists]· [endif]zt_testtask,测试版本表,记录了历次的测试任务。

[if !supportLists]· [endif]zt_testrun,则记录了每个测试任务所对应的用例执行情况。

[if !supportLists]· [endif]zt_testresult,记录了每个用例历次执行的结果。

[if !supportLists]· [endif]zt_testsuite,测试套件表。

[if !supportLists]· [endif]zt_suitecase,套件用例表。

[if !supportLists]· [endif]zt_testreport,测试报告表。

五、文档库相关的表

[if !supportLists]· [endif]zt_doclib,记录了自定义文档库列表。

[if !supportLists]· [endif]zt_doc,则记录了所有的文档。

[if !supportLists]· [endif]zt_doccontent,文档的内容表。

六、组织管理相关的表

[if !supportLists]· [endif]zt_user,用户表。

[if !supportLists]· [endif]zt_group,分组表。

[if !supportLists]· [endif]zt_usergroup,用户和分组之间的对应关系。

[if !supportLists]· [endif]zt_grouppriv,分组的权限。

[if !supportLists]· [endif]zt_dept,部门结构表。

[if !supportLists]· [endif]zt_userquery,用户自定义查询表。

[if !supportLists]· [endif]zt_usertpl,用户的自定义模板表。

[if !supportLists]· [endif]zt_usercontact,用户联系人表。

[if !supportLists]· [endif]zt_company,这张表记录了当前公司的信息,也是顶级的一张表。

七、后台管理相关的表

[if !supportLists]· [endif]zt_action,系统日志表。

[if !supportLists]· [endif]zt_cron,定时任务表,记录计划任务。

[if !supportLists]· [endif]zt_extension,插件表。

[if !supportLists]· [endif]zt_history,操作历史表, 记录对任何一个对象的所有修改记录, 前后值的变化。

[if !supportLists]· [endif]zt_lang,语言定义表。

八、其他模块相关的表

[if !supportLists]· [endif]zt_module,也是非常重要的一张表,它维护了禅道系统中的模块划分数据,比如需求的模块划分。

[if !supportLists]· [endif]zt_effort,日志表。

[if !supportLists]· [endif]zt_entry,应用表。

[if !supportLists]· [endif]zt_log,接口日志表。

[if !supportLists]· [endif]zt_mailqueue,邮件列队表。

[if !supportLists]· [endif]zt_module,模块表,记录模块信息。

[if !supportLists]· [endif]zt_notify,提醒信息表,记录所有的提醒信息。

[if !supportLists]· [endif]zt_score,积分表,记录积分信息。

[if !supportLists]· [endif]zt_file,附件表。记录了所有的附件。

[if !supportLists]· [endif]zt_block,区块表,记录我的地盘首页,产品主页,项目主页,测试主页的区块信息。

[if !supportLists]· [endif]zt_config,系统配置表,记录所有的基本配置信息。

[if !supportLists]· [endif]zt_webhook,记录webhook信息。

[if !supportLists]· [endif]zt_webhookdatas,记录webhook的数据表。

记录个人任务列表语句:

 SELECT * FROM zt_task z WHERE z.id in( SELECT task FROM `zt_taskestimate` WHERE account = 'cd2019')


SELECT *FROM zt_userview zu WHERE zu.account ='cd2019'


// 历史记录

SELECT * FROM zt_history以前的记录


SELECT * FROM zt_user zu LEFT JOIN zt_action za on zu.account = za.actor LEFT JOIN  zt_history zh on zh.action = za.id



SELECT * FROM zt_action za LEFT JOIN zt_task zt on za.objectID = zt.id left JOIN zt_module zm on zm.id = zt.module LEFT JOIN zt_history zh on za.id = zh.action LEFT JOIN zt_project zp on zt.project = zp.id


//最终数据库查询语句

SELECT

zu.account, zu.`password`, zu.realname, za.objectType, za.action, zt.`name` taskName, zm.`name` moduleName, zp.`name` projectName, zpd.`name` productName, zp.`status` projectStatus, zt.`status` taskStatus, zh.field, zh.new, za.date

FROM

zt_user zu

LEFT JOIN zt_action za ON zu.account = za.actor

LEFT JOIN zt_task zt ON za.objectID = zt.id

LEFT JOIN zt_module zm ON zm.id = zt.module

LEFT JOIN zt_product zpd on zm.root = zpd.id

LEFT JOIN zt_project zp ON zt.project = zp.id

LEFT JOIN zt_history zh ON zh.action = za.id WHERE za.objectType = 'task'  AND (zh.field = 'desc' or zh.field ='status')  ORDER BY zm.`name`,zt.`name`,zu.realname

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容