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.

12 lines
331 B

  1. package dto
  2. import "github.com/gogf/gf/v2/os/gtime"
  3. type VoteDto struct {
  4. Id uint `json:"id"`
  5. Jwcode string `json:"jwcode"`
  6. Nickname string `json:"nickname"`
  7. Dept string `json:"dept"`
  8. OptionsTitle string `json:"options_title"`
  9. Time *gtime.Time `json:"time"`
  10. }