16 lines
229 B
Go
16 lines
229 B
Go
package model
|
|
|
|
type ActivityExamine struct {
|
|
Model
|
|
ModelDeleted
|
|
ModelAt
|
|
}
|
|
|
|
func (m *ActivityExamine) TableName() string {
|
|
return "activity_examine"
|
|
}
|
|
|
|
func NewActivityExamine() *ActivityExamine {
|
|
return &ActivityExamine{}
|
|
}
|