Created
June 21, 2018 15:25
-
-
Save mohashari/7f7553d7208ab7af836eee6f9bc10f57 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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