Documentation ¶
Index ¶
- Variables
- func InsertMataKuliah(nama_matkul string, kode_matkul string, nama_dosen string, sks string, ...) (InsertedID interface{})
- func InsertNilai(nama_matkul string, kode_matkul string, sks string, grade string) (InsertedID interface{})
- func InsertOneDoc(db string, collection string, doc interface{}) (insertedID interface{})
- func InsertRencanastudi(nama_matkul string, kode_matkul string, status string, sks string, ...) (InsertedID interface{})
- func InsertTranskrp(nama_matkul string, kode_matkul string, sks string, grade string) (InsertedID interface{})
- func InsertUserdhs(nama string, npm string, program string, program_studi string, ...) (InsertedID interface{})
- func MongoConnect(dbname string) (db *mongo.Database)
- type MataKuliah
- type Nilaidhs
- type RencanaStudi
- type Transkrip
- type Userdhs
Constants ¶
This section is empty.
Variables ¶
View Source
var MongoString string = os.Getenv("MONGOSTRING")
Functions ¶
func InsertMataKuliah ¶
func InsertNilai ¶
func InsertOneDoc ¶
func InsertRencanastudi ¶
func InsertTranskrp ¶
func InsertUserdhs ¶
func MongoConnect ¶
Types ¶
type MataKuliah ¶
type MataKuliah struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama_matkul string `bson:"nama_matkul,omitempty" json:"nama_matkul,omitempty"` Kode_matkul string `bson:"kode_matkul,omitempty" json:"kode_matkul,omitempty"` Nama_dosen string `bson:"nama_dosen,omitempty" json:"nama_dosen,omitempty"` Sks string `bson:"sks,omitempty" json:"sks,omitempty"` Gambar string `bson:"gambar,omitempty" json:"gambar,omitempty"` }
type Nilaidhs ¶
type Nilaidhs struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama_matkul string `bson:"nama_matkul,omitempty" json:"nama_matkul,omitempty"` Kode_matkul string `bson:"kode_matkul,omitempty" json:"kode_matkul,omitempty"` Sks string `bson:"sks,omitempty" json:"sks,omitempty"` Grade string `bson:"grade,omitempty" json:"grade,omitempty"` }
type RencanaStudi ¶
type RencanaStudi struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama_matkul string `bson:"nama_matkul,omitempty" json:"nama_matkul,omitempty"` Kode_matkul string `bson:"kode_matkul,omitempty" json:"kode_matkul,omitempty"` Status string `bson:"status,omitempty" json:"status,omitempty"` Sks string `bson:"sks,omitempty" json:"sks,omitempty"` Kelas string `bson:"kelas,omitempty" json:"kelas,omitempty"` }
type Transkrip ¶
type Transkrip struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama_matkul string `bson:"nama_matkul,omitempty" json:"nama_matkul,omitempty"` Kode_matkul string `bson:"kode_matkul,omitempty" json:"kode_matkul,omitempty"` Sks string `bson:"sks,omitempty" json:"sks,omitempty"` Grade string `bson:"grade,omitempty" json:"grade,omitempty"` }
type Userdhs ¶
type Userdhs struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Nama string `bson:"nama,omitempty" json:"nama,omitempty"` Npm string `bson:"npm,omitempty" json:"npm,omitempty"` Program string `bson:"program,omitempty" json:"program,omitempty"` Program_Studi string `bson:"program_studi,omitempty" json:"program_studi,omitempty"` Tahun_Akademik string `bson:"tahun_akademik,omitempty" json:"tahun_akademik,omitempty"` Kelas string `bson:"kelas,omitempty" json:"kelas,omitempty"` Dosen_Wali string `bson:"dosen_wali,omitempty" json:"dosen_wali,omitempty"` }
Click to show internal directories.
Click to hide internal directories.