|
|
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package entity
// HotSubject is the golang structure for table hot_subject.
type HotSubject struct { Id uint `json:"id" orm:"id" description:""` //
SubjectId int `json:"subjectId" orm:"subject_id" description:"话题ID"` // 话题ID
Hot int `json:"hot" orm:"hot" description:"热度值"` // 热度值
UpdatedAt int `json:"updatedAt" orm:"updated_at" description:""` //
}
|