Files

12 lines
196 B
Go
Raw Normal View History

2021-12-28 17:14:02 +08:00
package model
import "SciencesServer/app/common/model"
type BillInstance struct {
*model.BillInstance
}
func NewBillInstance() *BillInstance {
return &BillInstance{model.NewBillInstance()}
}