12 lines
202 B
Go
12 lines
202 B
Go
package model
|
|
|
|
import "SciencesServer/app/common/model"
|
|
|
|
type ActivityApply struct {
|
|
*model.ActivityApply
|
|
}
|
|
|
|
func NewActivityApply() *ActivityApply {
|
|
return &ActivityApply{model.NewActivityApply()}
|
|
}
|