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.

17 lines
739 B

2 weeks ago
  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. // RemainVoteNumber is the golang structure for table remain_vote_number.
  9. type RemainVoteNumber struct {
  10. Id int64 `json:"id" orm:"id" description:""` //
  11. UserId int64 `json:"userId" orm:"user_id" description:""` //
  12. RemainTimes int `json:"remainTimes" orm:"remain_times" description:""` //
  13. LastDate *gtime.Time `json:"lastDate" orm:"last_date" description:""` //
  14. }