Files
2021-11-25 10:15:06 +08:00

16 lines
211 B
Go

package model
type BillInstance struct {
Model
ModelDeleted
ModelAt
}
func (m *BillInstance) TableName() string {
return "bill_instance"
}
func NewBillInstance() *BillInstance {
return &BillInstance{}
}