feat:完善项目信息

This commit is contained in:
henry
2021-12-28 17:14:02 +08:00
parent ae25321694
commit 40168a30b3
12 changed files with 339 additions and 70 deletions

View File

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