- package sb
- import (
- "time"
- )
- type GsOther struct {
- ID uint `json:"id" gorm:"primary_key"`
- CreatedAt time.Time `json:"createdAt"`
- UpdatedAt time.Time `json:"updatedAt"`
- ComId uint `json:"comId"`
- Quarter float64 `json:"quarter"`
- Year string `json:"year"`
- }
|