gs_other.go 297 B

1234567891011121314
  1. package sb
  2. import (
  3. "time"
  4. )
  5. type GsOther struct {
  6. ID uint `json:"id" gorm:"primary_key"`
  7. CreatedAt time.Time `json:"createdAt"`
  8. UpdatedAt time.Time `json:"updatedAt"`
  9. ComId uint `json:"comId"`
  10. Quarter float64 `json:"quarter"`
  11. Year string `json:"year"`
  12. }