Files
2021-11-25 09:58:08 +08:00

12 lines
202 B
Go

package model
import "SciencesServer/app/common/model"
type ActivityApply struct {
*model.ActivityApply
}
func NewActivityApply() *ActivityApply {
return &ActivityApply{model.NewActivityApply()}
}