Commit e779facfeff1e4563e2b99c1f740a4b50943a6aa
1 parent
020b3e86
fix: 删除role表里的task
Showing
1 changed file
with
1 additions
and
6 deletions
Show diff stats
models.proto
... | ... | @@ -125,10 +125,6 @@ message Role { |
125 | 125 | map<int32,string> pass_chapters = 19; // 通关记录 map[chapter_id]{carbon_id=pass_count=star} |
126 | 126 | map<int32,int32> time_reset = 20; // 重置记录 {1=1,2=1,3=1} 1=CrossDay,2=CrossWeek,3=CrossMonth |
127 | 127 | |
128 | - map<int32,int32> daily_task = 21; | |
129 | - map<int32,int32> week_task = 22; | |
130 | - map<int32,int32> month_task = 23; | |
131 | - | |
132 | 128 | int32 guide_steps = 24; |
133 | 129 | map<string,string> buffs = 25; |
134 | 130 | |
... | ... | @@ -151,8 +147,7 @@ message Task { |
151 | 147 | string id = 1; // @inject_tag: index:"unique" pri:"1" |
152 | 148 | map<int32,int64> task_time = 2; |
153 | 149 | map<int32,int32> daily_task = 3; |
154 | - map<int32,int32> week_task = 4; | |
155 | - map<int32,int32> month_task = 5; | |
150 | +// map<int32,int32> week_task = 4; | |
156 | 151 | |
157 | 152 | map<int32,string> specify_task = 6; |
158 | 153 | map<int32,string> achievement = 7; | ... | ... |