You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
944 B

  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // VoteRecords is the golang structure for table vote_records.
  9. type VoteRecords struct {
  10. Id uint `json:"id" orm:"id" description:""` //
  11. Jwcode string `json:"jwcode" orm:"jwcode" description:""` //
  12. VoteDate *gtime.Time `json:"voteDate" orm:"vote_date" description:""` //
  13. Time int `json:"time" orm:"time" description:""` //
  14. OptionsTitle string `json:"optionsTitle" orm:"options_title" description:""` //
  15. ActivityId int `json:"activityId" orm:"activity_id" description:"活动id"` // 活动id
  16. }