优化组件历史

This commit is contained in:
zegezy 2024-03-09 22:08:47 +08:00
parent 67176d7d1b
commit dc80260b8d
2 changed files with 35 additions and 2 deletions

View File

@ -5,7 +5,7 @@
"groupId" : "6f106ebdee21489db34b956f7770ff03",
"name" : "组件历史",
"createTime" : null,
"updateTime" : 1709803968033,
"updateTime" : 1709965399273,
"lock" : null,
"createBy" : null,
"updateBy" : null,
@ -26,7 +26,8 @@ return db.page("""
select
id,
create_date,
(select username from sys_user where id = sdch.create_by) createBy
(select username from sys_user where id = sdch.create_by) create_by
from sys_dynamic_component_history sdch
where component_id = #{componentId}
order by create_date desc
""")

View File

@ -0,0 +1,32 @@
{
"properties" : { },
"id" : "530c445f0e69494581d1420cd5311440",
"script" : null,
"groupId" : "6f106ebdee21489db34b956f7770ff03",
"name" : "获取最后一版代码",
"createTime" : null,
"updateTime" : 1709964701024,
"lock" : null,
"createBy" : null,
"updateBy" : null,
"path" : "/getLastCode",
"method" : "GET",
"parameters" : [ ],
"options" : [ ],
"requestBody" : "",
"headers" : [ ],
"paths" : [ ],
"responseBody" : null,
"description" : null,
"requestBodyDefinition" : null,
"responseBodyDefinition" : null
}
================================
return db.selectOne("""
select
source_code,
create_date,
(select username from sys_user where id = sdch.create_by) create_by
from sys_dynamic_component_history sdch where component_id = #{componentId}
order by create_date desc limit 1
""")