update .gitignore

This commit is contained in:
henry
2021-11-25 10:15:06 +08:00
parent 474e33750a
commit f82457a503
6 changed files with 154 additions and 170 deletions

View File

@ -0,0 +1,15 @@
package model
type BillInstance struct {
Model
ModelDeleted
ModelAt
}
func (m *BillInstance) TableName() string {
return "bill_instance"
}
func NewBillInstance() *BillInstance {
return &BillInstance{}
}