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