Skip to content
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b97583e
fix: update page history bug
lu-yg Dec 26, 2024
d30877c
fix: format code and fix style issue
lu-yg Jan 7, 2025
33316bf
Merge branch 'develop' of github.com:lu-yg/tiny-engine-backend-java i…
lu-yg Jan 7, 2025
7fc6507
fix: modify page histiry entity
lu-yg Jan 7, 2025
64be7b4
Merge branch 'opentiny:develop' into develop
lu-yg Jan 9, 2025
24474b8
feat: add code submission rules
lu-yg Jan 9, 2025
9745b66
Merge branch 'develop' of github.com:lu-yg/tiny-engine-backend-java i…
lu-yg Jan 9, 2025
239c624
Merge branch 'opentiny:develop' into develop
lu-yg Jan 9, 2025
b77f2f4
fix: modify app schema for test
lu-yg Jan 9, 2025
feeb8f7
Merge branch 'develop' of github.com:lu-yg/tiny-engine-backend-java i…
lu-yg Jan 9, 2025
7d52937
fix: modify block group
lu-yg Jan 22, 2025
6559bec
fix: modify t_i18n_entry u_idx_i18n_entity
lu-yg Jan 22, 2025
2a7fc44
Merge branch 'opentiny:develop' into develop
lu-yg Jan 22, 2025
656a4a1
fix: modify t_i18n_entry u_idx_i18n_entity
lu-yg Jan 22, 2025
9de10c5
Merge branch 'develop' of github.com:lu-yg/tiny-engine-backend-java i…
lu-yg Jan 22, 2025
e9aa592
fix: modify block update api
lu-yg Jan 23, 2025
aff95bb
Merge branch 'opentiny:develop' into develop
lu-yg Jan 23, 2025
02607e4
Merge branch 'develop' of github.com:lu-yg/tiny-engine-backend-java i…
lu-yg Jan 23, 2025
ed7483d
fix: Modify code format
lu-yg Jan 23, 2025
48267d6
fix: Modify code format
lu-yg Jan 23, 2025
cabb309
fix: Modify code format
lu-yg Jan 23, 2025
83cb48a
fix: Modify code format
lu-yg Jan 24, 2025
486944b
fix: Modify code format
lu-yg Jan 24, 2025
751f331
Merge branch 'opentiny:develop' into develop
lu-yg Jan 26, 2025
48645e1
fix: modify block group api
lu-yg Jan 26, 2025
d2f2406
fix: modify block group mapper
lu-yg Jan 26, 2025
e24d0ec
Merge branch 'develop' of github.com:lu-yg/tiny-engine-backend-java i…
lu-yg Jan 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions base/src/main/resources/mappers/BlockGroupMapper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@
<result column="block_platform_id" property="platformId"/>
<result column="block_app_id" property="appId"/>
<result column="content_blocks" property="contentBlocks"/>
<result column="block_group_id" property="blockGroupId"/>
<result column="block_created_by" property="createdBy"/>
<result column="block_last_updated_by" property="lastUpdatedBy"/>
<result column="block_created_time" property="createdTime"/>
Expand Down Expand Up @@ -172,7 +171,6 @@
b.platform_id as block_platform_id,
b.app_id as block_app_id,
b.content_blocks,
b.block_group_id,
b.created_by as block_created_by,
b.last_updated_by as block_last_updated_by,
b.created_time as block_created_time,
Expand Down Expand Up @@ -236,7 +234,6 @@
b.platform_id as block_platform_id,
b.app_id as block_app_id,
b.content_blocks,
b.block_group_id,
b.created_by as block_created_by,
b.last_updated_by as block_last_updated_by,
b.created_time as block_created_time,
Expand Down Expand Up @@ -302,7 +299,6 @@
b.platform_id as block_platform_id,
b.app_id as block_app_id,
b.content_blocks,
b.block_group_id,
b.created_by as block_created_by,
b.last_updated_by as block_last_updated_by,
b.created_time as block_created_time,
Expand Down
Loading