package typeManage type LoginType struct { Id int64 `gorm:"column:id;" json:"id"` LoginName string `gorm:"column:login_name;" json:"login_name"` LoginDesc string `gorm:"column:login_desc;" json:"login_desc"` DisplaySequence int64 `gorm:"column:display_sequence;" json:"display_sequence"` GameCounts int64 `gorm:"column:game_counts;" json:"game_counts"` CreatedAt LocalTime `gorm:"column:create_time;" json:"createdAt"` UpdatedAt LocalTime `gorm:"column:update_time;" json:"updatedAt"` }