feat:完善项目管理

This commit is contained in:
henry
2021-12-16 09:44:59 +08:00
parent a59759379c
commit 8ab89cc051
7 changed files with 129 additions and 4 deletions

View File

@ -0,0 +1,11 @@
package model
import "SciencesServer/app/common/model"
type ServiceMessage struct {
*model.ServiceMessage
}
func NewServiceMessage() *ServiceMessage {
return &ServiceMessage{model.NewServiceMessage()}
}