当前位置:首页>报表模板>tekla钢结构深化-报表模版开发篇

tekla钢结构深化-报表模版开发篇

  • 2026-04-01 10:40:51
tekla钢结构深化-报表模版开发篇

报表模板的开发

1,基础应用,使用TEKLA基本功能(out-of-box, 开箱即用)

2,高级应用,会使用TEKLA定制、自定义节点、objects.inp创建

3,会使用TEKLA Open API

ROI: Return on Investment

投资回报率

什么是模板

Ø用于TEKLA中的图表/表格(Forms/Tables

Ø图形模板(Graphical,文件后缀 .tpl,用于图纸文件

Ø文本模板(Textual),文件后缀.rpt用于生成报表

图形模板(Graphical,文件后缀.tpl,用于图纸文件

材料表、图签、图表

可以包含图形(如表格轮廓线、图片、符号)

可以有不同的字体设置

文本模板(Textual),文件后缀.rpt,用于生成报表

报表(Report)、清单(List)

不可以包含图形

虽然也可以有不同的字体设置,但是输出显示不会出现这些格式

TEKLA模型文件为一个数据库,其中包含了TEKLA里面的各种信息与数据

模板编辑器不可以直接读取TEKLA文件及其数据库

TEKLA给模板提供了可供其读取的定义文件,当模板要输出时,TEKLA提供实时数据

模板组件

1.标题 

2.页眉

3.

4.页脚

5.脚注

模板对象

1.图纸对象: 线、折线、弧、圆、矩形

2.符号(Symbol

3.位图图片(Picture)

4.文本(Text

5.AutoCAD文件和MicroStation文件(File

6.值字段(Value Field

7.图形字段(Graphical Field

1.插入模板组件,即各种行

2.插入模板对象,即各种线条、文本、值字段

3.按需求调整格式

4.按需求调整公式及规则

5.调试

组件可以理解为一个容器,里面可以放各种对象(Objects

图纸对象: 线、折线、弧、圆、矩形

符号(Symbol

位图图片(Picture)

文本(Text

AutoCAD文件和MicroStation文件(File

值字段(Value Field

图形字段(Graphical Field

值字段属性设置

用于值字段公式和行规则

重量:型钢按毛重计算,板按净重计算

型钢毛重=型钢最长尺寸*单位长度的重量

板的毛重=板的厚度*宽度*长度*材质的密度

型钢或板的净重=型钢或板在模型中所占的实际体积*材质的密度

数学运算

算术运算符

三角函数

其它函数

统计函数

数据类型转换

数学运算

算术运算符

三角函数

其它函数

统计函数

数据类型转换

字符串运算

属性函数

值字段函数

1.利用已有模板,或TEKLA自带模板进行修改

2.对于用法不太清楚的,就去,根据测试结果进行调整

3.一定要对测试的样本进行分析,确保可能出现的各种状况都有考虑到

1.研究已有模板

2.根据自己的需求,去修改模板,反复试错Trial and Error)并验证

3.PPT前面所列仅为模板文件的组成简要介绍,详细可见帮助文件

4.仅看介绍及帮助文件无法学会,一定要动手练习

1.编号

GetValue("PART_POS")+"上翼缘

:零件编号+"上翼缘

2.规格

"PL"+int(GetValue("PROFILE.FLANGE THICKNESS"))+"*"+int(GetValue("WIDTH"))

:"pL"+int(上翼缘厚度)+"*"+int(宽度)

3.长度

要选择上翼缘长度、下翼缘长度、腹板长度

4.单重

GetValue("PROFILE.FLANGE THICKNESS"*GetValue("WIDTH")*GetValue("FLANGE LENGTH U")*0.00000785

:上翼缘厚度*宽度*上翼缘长度*密度

构件号:"#-" + CopyField("A_Name")

if (GetValue("MAINPART.FINISH")=="1") then GetValue("ASSEMBLY_POS") else GetValue("ASSEMBLY_POS") endif

零件号:GetValue("ASSEMBLY_POS")

if (GetValue("MAINPART.USERDEFINED.USER_FIELD_1")==0) then GetValue("MAINPART.PROFILE") else GetValue("MAINPART.USERDEFINED.USER_FIELD_1") endif

GetValue("LENGTH")

GetValue("MODEL_TOTAL")

GetValue("WEIGHT_GROSS")*1.015

GetValue("WEIGHT_GROSS")*GetValue("MODEL_TOTAL")*1.015

GetValue("MODEL_TOTAL")

GetValue("WEIGHT_GROSS")

GetValue("PART_POS")

GetValue("PROFILE")

GetValue("LENGTH")

GetValue("NUMBER")*GetValue("ASSEMBLY.MODEL_TOTAL")/GetValue("ASSEMBLY.MODEL_TOTAL")

GetValue("WEIGHT_GROSS")

GetFieldFormula("N4")*GetFieldFormula("4w")

GetValue("MATERIAL")

GetValue("USERDEFINED.SJ")

GetValue("WEIGHT_GROSS")*0.015

GetValue("WEIGHT_GROSS")*GetValue("MODEL_TOTAL")*0.015

GetValue("WASHER.WEIGHT")

GetValue("WASHER.NUMBER")

GetValue("NUT.WEIGHT")

"M"+int(GetValue("DIAMETER"))+"*"+int(GetValue("LENGTH"))

GetValue("WEIGHT")

GetValue("NUMBER")

"连接板总厚" + int(GetValue("BOLT_MATERIAL_LENGTH")) + "mm"

GetValue("NUMBER")

GetFieldFormula("ww")*GetFieldFormula("nw")+GetFieldFormula("wn")*GetFieldFormula("nn")+GetFieldFormula("wb")*GetFieldFormula("nb")

GetValue("TYPE")

"Φ"+int(GetValue("DIAMETER"))+"*"+int(GetValue("LENGTH"))

GetValue("NUMBER")

GetValue("WEIGHT")*GetValue("NUMBER")

if (GetValue("WEIGHT_GROSS")<1000) then "吊耳1" else (if (GetValue("WEIGHT_GROSS")<2000) then "吊耳2" else (if (GetValue("WEIGHT_GROSS")<4000) then "吊耳3" else (if (GetValue("WEIGHT_GROSS")<8000) then "吊耳4" else "--" endif) endif) endif) endif

if (GetValue("WEIGHT_GROSS")<1000) then "PL8*70" else (if (GetValue("WEIGHT_GROSS")<2000) then "PL8*75" else (if (GetValue("WEIGHT_GROSS")<4000) then "PL10*95" else (if (GetValue("WEIGHT_GROSS")<8000) then "PL16*110" else "大于8t吊耳另选" endif) endif)endif)endif)

if (GetValue("WEIGHT_GROSS")<1000) then "70" else (if (GetValue("WEIGHT_GROSS")<2000) then "90" else (if (GetValue("WEIGHT_GROSS")<4000) then "110" else (if (GetValue("WEIGHT_GROSS")<8000) then "130" else "大于8t吊耳另选" endif) endif)endif)endif)

if GetValue("LENGTH")<2501 then 1 else 2 endif

if (GetValue("WEIGHT_GROSS")<1000) then "0.31" else (if (GetValue("WEIGHT_GROSS")<2000) then "0.42" else (if (GetValue("WEIGHT_GROSS")<4000) then "0.82" else (if (GetValue("WEIGHT_GROSS")<8000) then "1.80" else "--" endif) endif) endif) endif

GetFieldFormula("LUG_W")

GetFieldFormula("LUG_W") * GetFieldFormula("N")

"Q355B"

"#-" +CopyField("A1_Name")

if (GetValue("MAINPART.FINISH")=="1") then GetValue("ASSEMBLY_POS") else GetValue("ASSEMBLY_POS") endif

GetValue("MODEL_TOTAL")

GetFieldFormula("U2")+GetFieldFormula("A-Name")

Total("NUM")

1先学会调用:首先要掌握如何调用别人开发好的模板,

2会自己开发:进一步学习要自己开发模板掌握了如何开发模板即使还不够完善,也可以根据需要做些简单的调整,在工作中多一分灵活机动性;

3、在逐步深入的学习实践中把自己开发的模板推向成熟;

逐步深化:认知是在实践中逐步深化的。

技能的掌握有一个,从不知道到知道,从不会到会,从不熟练到熟练的渐进过程;这中间的改变源于自己不断的学习与实践,没有不断的精进,这种转变就不会出现的。

0.n...(相对路径)tekla安装路径下

C:\ProgramData\Tekla Structures\19.0\Environments\china\template

1.n...(相对路径)模型文件路径下

D:\TeklaStructuresModels\模型名称...\attributes

tekla宏文件存放路径

C:\ProgramData\Tekla Structures\19.0\Environments\china\macros

修改属性文件路径

ctrl+e高级选项文件位置-MODELXS_PRWJECT(属性文件路径)

tekla钢结构深化建模-基础工具篇
tekla深化建模-常用设置篇
tekla钢结构深化建模-自定义组件开发篇

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-04-06 01:39:59 HTTP/2.0 GET : https://d.15386.cn/a/458344.html
  2. 运行时间 : 0.088955s [ 吞吐率:11.24req/s ] 内存消耗:4,277.25kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=8078db60cc732302125fd7131f0b330a
  1. /yingpanguazai/ssd/ssd1/www/d.15386.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/d.15386.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/d.15386.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/d.15386.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/d.15386.cn/runtime/temp/d9e2bb8e9858efbad02783ea74578d3a.php ( 12.06 KB )
  140. /yingpanguazai/ssd/ssd1/www/d.15386.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000400s ] mysql:host=127.0.0.1;port=3306;dbname=d_15386;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000600s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000272s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.005654s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000531s ]
  6. SELECT * FROM `set` [ RunTime:0.000215s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000504s ]
  8. SELECT * FROM `article` WHERE `id` = 458344 LIMIT 1 [ RunTime:0.000509s ]
  9. UPDATE `article` SET `lasttime` = 1775410799 WHERE `id` = 458344 [ RunTime:0.003106s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.000287s ]
  11. SELECT * FROM `article` WHERE `id` < 458344 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.000574s ]
  12. SELECT * FROM `article` WHERE `id` > 458344 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.000424s ]
  13. SELECT * FROM `article` WHERE `id` < 458344 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.000773s ]
  14. SELECT * FROM `article` WHERE `id` < 458344 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.004710s ]
  15. SELECT * FROM `article` WHERE `id` < 458344 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.002862s ]
0.090646s