feat:完善项目

This commit is contained in:
henry
2021-11-03 14:51:14 +08:00
parent 565b683d7e
commit 62c2dda714
14 changed files with 374 additions and 2 deletions

View File

@ -0,0 +1,16 @@
package model
type WorkInstance struct {
Model
Title string `json:"title"`
ModelDeleted
ModelAt
}
func (m *WorkInstance) TableName() string {
return "manage_instance"
}
func NewWorkInstance() *WorkInstance {
return &WorkInstance{}
}