Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dankal-data-view
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
仲光辉
dankal-data-view
Commits
eeffe853
Commit
eeffe853
authored
Mar 20, 2026
by
mercymodest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add multilingual descriptions for annual and monthly membership packages
parent
67095acf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
52 additions
and
1 deletion
+52
-1
任务增加超时惩罚.sql
New_eCalendar/25_12月份优化/任务增加超时惩罚.sql
+52
-1
No files found.
New_eCalendar/25_12月份优化/任务增加超时惩罚.sql
View file @
eeffe853
#
完成
记录表增加任务超时惩罚相关字段
#
完成
记录表增加任务超时惩罚相关字段
...
@@ -8,3 +8,53 @@ alter table t_misc_event_records
...
@@ -8,3 +8,53 @@ alter table t_misc_event_records
alter
table
t_misc_event_records
alter
table
t_misc_event_records
add
task_timeout_penalty_star_count
int
null
comment
'任务超时获取的星星数量'
;
add
task_timeout_penalty_star_count
int
null
comment
'任务超时获取的星星数量'
;
-- ============================================
-- 新增语言:会员套餐多语言描述
-- 10:繁体中文 11:捷克语 12:斯洛伐克语 13:匈牙利语 14:波兰语
-- ============================================
-- ==================== 年会员套餐 ====================
-- 繁体中文
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875158028295
,
'年会员套餐'
,
6
,
1820405328048041986
,
10
,
'按年支付'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 捷克语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875170611270
,
'年会员套餐'
,
6
,
1820405328048041986
,
11
,
'Roční předplatné'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 斯洛伐克语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875178999879
,
'年会员套餐'
,
6
,
1820405328048041986
,
12
,
'Ročné predplatné'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 匈牙利语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875187388449
,
'年会员套餐'
,
6
,
1820405328048041986
,
13
,
'Éves előfizetés'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 波兰语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875199971369
,
'年会员套餐'
,
6
,
1820405328048041986
,
14
,
'Subskrypcja roczna'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- ==================== 每月会员套餐 ====================
-- 繁体中文
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875208359991
,
'每月会员套餐'
,
6
,
1820405020114825217
,
10
,
'按月支付'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 捷克语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875216748592
,
'每月会员套餐'
,
6
,
1820405020114825217
,
11
,
'Měsíční předplatné'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 斯洛伐克语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875225137173
,
'每月会员套餐'
,
6
,
1820405020114825217
,
12
,
'Mesačné predplatné'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 匈牙利语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875237720159
,
'每月会员套餐'
,
6
,
1820405020114825217
,
13
,
'Havi előfizetés'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
-- 波兰语
INSERT
INTO
t_business_description
(
business_description_id
,
business_description_name
,
business_type
,
business_id
,
language_type
,
title
,
description
,
is_delete
,
create_time
,
create_by
,
create_id
,
update_time
,
update_by
,
update_id
,
business_extend_id
,
sort
,
icon
,
content_items_id
,
remark
)
VALUES
(
690133875246108701
,
'每月会员套餐'
,
6
,
1820405020114825217
,
14
,
'Subskrypcja miesięczna'
,
NULL
,
0
,
NOW
(),
'admin'
,
1788463338573955080
,
NOW
(),
'admin'
,
1788463338573955080
,
NULL
,
1
,
NULL
,
NULL
,
NULL
);
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment