13 lines
667 B

6 months ago
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. // HotSubject is the golang structure for table hot_subject.
  6. type HotSubject struct {
  7. Id uint `json:"id" orm:"id" description:""` //
  8. SubjectId int `json:"subjectId" orm:"subject_id" description:"话题ID"` // 话题ID
  9. Hot int `json:"hot" orm:"hot" description:"热度值"` // 热度值
  10. UpdatedAt int `json:"updatedAt" orm:"updated_at" description:""` //
  11. }