gen.go 287 B

12345678910111213
  1. package goldbrick
  2. type RedemptionExchange struct {
  3. Id int64 `json:"id"`
  4. Date string `json:"date"`
  5. Code string `json:"code"`
  6. UserId int64 `json:"user_id"`
  7. Debug int64 `json:"debug"`
  8. }
  9. func (this *RedemptionExchange) TableName() string {
  10. return "redemption_exchange"
  11. }