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