feat: 支持限制活动打卡的总次数

This commit is contained in:
2024-02-12 20:58:09 +08:00
parent e1e1049b45
commit 686ac375f2
3 changed files with 23 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ type Activity struct {
Name string `json:"name"`
Image string `json:"image"`
Credit int `json:"credit"`
Visible int `json:"visible"`
Limit int `json:"limit"`
TeacherAvailable int `json:"teacher_available"`
}