// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.
// Code generated by gorm.io/gen. DO NOT EDIT.

package model

import (
	"time"
)

const TableNameClub = "club"

// Club club
type Club struct {
	ID            int32     `gorm:"column:id;primaryKey;autoIncrement:true;comment:Primary Key" json:"id"` // Primary Key
	CreateTime    time.Time `gorm:"column:createTime;comment:Create Time" json:"createTime"`               // Create Time
	ClubID        int32     `gorm:"column:clubId" json:"clubId"`
	ClubName      string    `gorm:"column:clubName" json:"clubName"`
	Synopsis      string    `gorm:"column:synopsis" json:"synopsis"`
	MemberCount   int32     `gorm:"column:memberCount" json:"memberCount"`
	ActivityCount int32     `gorm:"column:activityCount" json:"activityCount"`
	ContactPerson string    `gorm:"column:contactPerson" json:"contactPerson"`
	WxCode        string    `gorm:"column:wxCode" json:"wxCode"`
	Phone         string    `gorm:"column:phone" json:"phone"`
	Province      string    `gorm:"column:province" json:"province"`
	City          string    `gorm:"column:city" json:"city"`
	Region        string    `gorm:"column:region" json:"region"`
	Address       string    `gorm:"column:address" json:"address"`
}

// TableName Club's table name
func (*Club) TableName() string {
	return TableNameClub
}
