Skip to content

Instantly share code, notes, and snippets.

@mohashari
Created June 21, 2018 15:25
Show Gist options
  • Select an option

  • Save mohashari/7f7553d7208ab7af836eee6f9bc10f57 to your computer and use it in GitHub Desktop.

Select an option

Save mohashari/7f7553d7208ab7af836eee6f9bc10f57 to your computer and use it in GitHub Desktop.
type (
student struct {
gorm.Model
Nama string `json:"nama"`
Alamat string `json:"alamat"`
NoHp string `json:"no_hp"`
Kelas string `json:"kelas"`
StatusAktif int `json:"status_aktif"`
}
transformedStudent struct {
ID uint `json:"id"`
Nama string `json:"nama"`
Alamat string `json:"alamat"`
NoHp string `json:"no_hp"`
Kelas string `json:"kelas"`
StatusAktif bool `json:"status_aktif"`
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment