Files
2021-12-28 17:14:02 +08:00

12 lines
196 B
Go

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