sql.go 285 B

1234567891011
  1. package newsignv2
  2. type NewPlayerSignInfov2 struct {
  3. Id int64 `json:"id" gorm:"column:id"`
  4. Info string `json:"info" gorm:"column:info"`
  5. InfoList []int64 `json:"info_list" gorm:"-"`
  6. }
  7. func (n NewPlayerSignInfov2) TableName() string {
  8. return "new_player_sign_infov2"
  9. }