16 lines
211 B
Go
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{}
|
|
}
|