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 ActivityExamine struct {
Model
ModelDeleted
ModelAt
}
func (m *ActivityExamine) TableName() string {
return "activity_examine"
}
func NewActivityExamine() *ActivityExamine {
return &ActivityExamine{}
}