实现奖励类型的增删改查

This commit is contained in:
2025-06-17 16:25:04 +08:00
parent 3dceeeddb7
commit 427e70f94e
29 changed files with 1175 additions and 1 deletions

11
internal/model/reward.go Normal file
View File

@ -0,0 +1,11 @@
package model
type Reward struct {
}
type RewardListIn struct {
}
type RewardListOut struct {
List []Reward
Total int
}