2019-04-22 02:59:20 +00:00

12 lines
193 B
Go

package show
//AppActive db show app_active table
type AppActive struct {
Name string `json:"name,omitempty"`
}
// TableName .
func (a AppActive) TableName() string {
return "app_active"
}