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
741 B

6 months 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. // PrizeRecord is the golang structure for table prize_record.
  9. type PrizeRecord struct {
  10. Id uint `json:"id" orm:"id" description:""` //
  11. Jwcode int `json:"jwcode" orm:"jwcode" description:"精网号"` // 精网号
  12. PrizeId int `json:"prizeId" orm:"prize_id" description:"奖品ID"` // 奖品ID
  13. Time *gtime.Time `json:"time" orm:"time" description:"抽取时间"` // 抽取时间
  14. }