package model import ( "time" ) type SuperManager struct { CreatedTime time.Time `json:"created_time"` // CreatedTime Id int64 `json:"id"` // id UpdatedTime time.Time `json:"updated_time"` // UpdatedTime UserId int64 `json:"user_id"` // 用户ID } func (s *SuperManager) TableName() string { return "super_manager" }