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
6fac0ce3
Commit
6fac0ce3
authored
Mar 22, 2026
by
mercymodest
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
chore: comment out SQL statements for task timeout penalty and membership package descriptions
parent
eeffe853
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
61 deletions
+61
-61
任务增加超时惩罚.sql
New_eCalendar/25_12月份优化/任务增加超时惩罚.sql
+61
-61
No files found.
New_eCalendar/25_12月份优化/任务增加超时惩罚.sql
View file @
6fac0ce3
#
完成
记录表增加任务超时惩罚相关字段
#
完成
记录表增加任务超时惩罚相关字段
#
完成记录表增加任务超时惩罚相关字段
#
完成记录表增加任务超时惩罚相关字段
alter
table
t_misc_event_records
#
alter
table
t_misc_event_records
add
task_timeout_status
tinyint
default
0
null
comment
'任务是否超时 0:未超时 1:超时'
;
#
add
task_timeout_status
tinyint
default
0
null
comment
'任务是否超时 0:未超时 1:超时'
;
#
alter
table
t_misc_event_records
#
alter
table
t_misc_event_records
add
task_timeout_penalty_star_percent
decimal
(
6
,
2
)
null
comment
'任务超时惩罚获得星星百分比(etc.0.02)'
;
#
add
task_timeout_penalty_star_percent
decimal
(
6
,
2
)
null
comment
'任务超时惩罚获得星星百分比(etc.0.02)'
;
#
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:波兰语
#
-- 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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
)
#
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
);
#
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
\ 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