Files

12 lines
172 B
Go
Raw Normal View History

2021-12-01 14:12:23 +08:00
package model
import "SciencesServer/app/common/model"
type UserBank struct {
*model.UserBank
}
func NewUserBank() *UserBank {
return &UserBank{model.NewUserBank()}
}