model

package
v0.0.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 16, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AmiAdmin

type AmiAdmin struct {
	IDAdmin  int            `gorm:"primaryKey;column:id_admin" json:"-"`
	NmAdmin  string         `gorm:"column:nm_admin" json:"nmAdmin"`
	Jabatan  sql.NullString `gorm:"column:jabatan" json:"jabatan"`
	Email    sql.NullString `gorm:"column:email" json:"email"`
	Nidn     string         `gorm:"column:nidn" json:"nidn"`
	Password string         `gorm:"column:password" json:"password"`
	Foto     sql.NullString `gorm:"column:foto" json:"foto"`
	IDSiklus sql.NullInt32  `gorm:"column:id_siklus" json:"idSiklus"`
}

func (*AmiAdmin) TableName

func (m *AmiAdmin) TableName() string

type AmiAmi

type AmiAmi struct {
	IDAmi          int            `gorm:"primaryKey;column:id_ami" json:"-"`
	IDFakultas     int            `gorm:"column:id_fakultas" json:"idFakultas"`
	IDProdi        int            `gorm:"column:id_prodi" json:"idProdi"`
	IDAuditorKetua int            `gorm:"column:id_auditor_ketua" json:"idAuditorKetua"`
	IDAnggota1     sql.NullInt32  `gorm:"column:id_anggota1" json:"idAnggota1"`
	IDAnggota2     sql.NullInt32  `gorm:"column:id_anggota2" json:"idAnggota2"`
	IDSiklus       int            `gorm:"column:id_siklus" json:"idSiklus"`
	Status         sql.NullString `gorm:"column:status" json:"status"`
	TglRtm         datatypes.Date `gorm:"column:tgl_rtm" json:"tglRtm"`
	TglSelesai     datatypes.Date `gorm:"column:tgl_selesai" json:"tglSelesai"`
}

func (*AmiAmi) TableName

func (m *AmiAmi) TableName() string

type AmiAudit

type AmiAudit struct {
	IDAudit      int            `gorm:"primaryKey;column:id_audit" json:"-"`
	IDAmi        int            `gorm:"column:id_ami" json:"idAmi"`
	IDStandar    int            `gorm:"column:id_standar" json:"idStandar"`
	IDKts        int            `gorm:"column:id_kts" json:"idKts"`
	Uraian       string         `gorm:"column:uraian" json:"uraian"`
	Tindakan     sql.NullString `gorm:"column:tindakan" json:"tindakan"`
	Target       sql.NullString `gorm:"column:target" json:"target"`
	Status       string         `gorm:"column:status" json:"status"`
	Tgl          carbon.Date    `gorm:"column:tgl" json:"tgl"`
	IDAuditor    int            `gorm:"column:id_auditor" json:"idAuditor"`
	TglPerbaikan datatypes.Date `gorm:"column:tgl_perbaikan" json:"tglPerbaikan"`
}

func (*AmiAudit) TableName

func (m *AmiAudit) TableName() string

type AmiAuditor

type AmiAuditor struct {
	IDAuditor  int            `gorm:"primaryKey;column:id_auditor" json:"-"`
	IDFakultas int            `gorm:"column:id_fakultas" json:"idFakultas"`
	IDProdi    int            `gorm:"column:id_prodi" json:"idProdi"`
	Auditor    string         `gorm:"column:auditor" json:"auditor"`
	Nidn       string         `gorm:"column:nidn" json:"nidn"`
	Niknip     sql.NullString `gorm:"column:niknip" json:"niknip"`
	Telp       sql.NullString `gorm:"column:telp" json:"telp"`
	Email      sql.NullString `gorm:"column:email" json:"email"`
	Foto       sql.NullString `gorm:"column:foto" json:"foto"`
	Password   string         `gorm:"column:password" json:"password"`
	IDSiklus   sql.NullInt32  `gorm:"column:id_siklus" json:"idSiklus"`
}

func (*AmiAuditor) TableName

func (m *AmiAuditor) TableName() string

type AmiFakultas

type AmiFakultas struct {
	IDFakultas int            `gorm:"primaryKey;column:id_fakultas" json:"-"`
	Fakultas   string         `gorm:"column:fakultas" json:"fakultas"`
	Dekan      string         `gorm:"column:dekan" json:"dekan"`
	Nidn       string         `gorm:"column:nidn" json:"nidn"`
	Niknip     sql.NullString `gorm:"column:niknip" json:"niknip"`
	Telp       sql.NullString `gorm:"column:telp" json:"telp"`
	Email      sql.NullString `gorm:"column:email" json:"email"`
	Foto       sql.NullString `gorm:"column:foto" json:"foto"`
	Password   string         `gorm:"column:password" json:"password"`
	IDSiklus   sql.NullInt32  `gorm:"column:id_siklus" json:"idSiklus"`
}

func (*AmiFakultas) TableName

func (m *AmiFakultas) TableName() string

type AmiFiles

type AmiFiles struct {
	IDFile   int           `gorm:"primaryKey;column:id_file" json:"-"`
	IDSiklus int           `gorm:"column:id_siklus" json:"idSiklus"`
	Judul    string        `gorm:"column:judul" json:"judul"`
	File     string        `gorm:"column:file" json:"file"`
	Tgl      carbon.Carbon `gorm:"column:tgl" json:"tgl"`
	IDAdmin  int           `gorm:"column:id_admin" json:"idAdmin"`
}

func (*AmiFiles) TableName

func (m *AmiFiles) TableName() string

type AmiFilesProdi

type AmiFilesProdi struct {
	IDFile   int           `gorm:"primaryKey;column:id_file" json:"-"`
	IDSiklus int           `gorm:"column:id_siklus" json:"idSiklus"`
	Judul    string        `gorm:"column:judul" json:"judul"`
	File     string        `gorm:"column:file" json:"file"`
	Tgl      carbon.Carbon `gorm:"column:tgl" json:"tgl"`
	IDAdmin  int           `gorm:"column:id_admin" json:"idAdmin"`
}

func (*AmiFilesProdi) TableName

func (m *AmiFilesProdi) TableName() string

type AmiFoto

type AmiFoto struct {
	IDFoto    int           `gorm:"primaryKey;column:id_foto" json:"-"`
	IDAmi     int           `gorm:"column:id_ami" json:"idAmi"`
	Foto      string        `gorm:"column:foto" json:"foto"`
	Tgl       carbon.Carbon `gorm:"column:tgl" json:"tgl"`
	IDAuditor int           `gorm:"column:id_auditor" json:"idAuditor"`
}

func (*AmiFoto) TableName

func (m *AmiFoto) TableName() string

type AmiJenjang

type AmiJenjang struct {
	IDJenjang int    `gorm:"primaryKey;column:id_jenjang" json:"-"`
	Jenjang   string `gorm:"column:jenjang" json:"jenjang"`
}

func (*AmiJenjang) TableName

func (m *AmiJenjang) TableName() string

type AmiKesimpulan

type AmiKesimpulan struct {
	IDKesimpulan int            `gorm:"primaryKey;column:id_kesimpulan" json:"-"`
	IDAmi        int            `gorm:"column:id_ami" json:"idAmi"`
	CkpLengkap   string         `gorm:"column:ckp_lengkap" json:"ckpLengkap"`
	Sebutkan     sql.NullString `gorm:"column:sebutkan" json:"sebutkan"`
	Tgl          carbon.Carbon  `gorm:"column:tgl" json:"tgl"`
	IDAuditor    int            `gorm:"column:id_auditor" json:"idAuditor"`
}

func (*AmiKesimpulan) TableName

func (m *AmiKesimpulan) TableName() string

type AmiKts

type AmiKts struct {
	IDKts int    `gorm:"primaryKey;column:id_kts" json:"-"`
	Kts   string `gorm:"column:kts" json:"kts"`
}

func (*AmiKts) TableName

func (m *AmiKts) TableName() string

type AmiMekanisme

type AmiMekanisme struct {
	IDMekanisme int           `gorm:"primaryKey;column:id_mekanisme" json:"-"`
	IDAmi       int           `gorm:"column:id_ami" json:"idAmi"`
	Question1   string        `gorm:"column:question1" json:"question1"`
	Question2   string        `gorm:"column:question2" json:"question2"`
	Question3   string        `gorm:"column:question3" json:"question3"`
	Question4   string        `gorm:"column:question4" json:"question4"`
	Question5   string        `gorm:"column:question5" json:"question5"`
	Question6   string        `gorm:"column:question6" json:"question6"`
	Tgl         carbon.Carbon `gorm:"column:tgl" json:"tgl"`
	IDAuditor   int           `gorm:"column:id_auditor" json:"idAuditor"`
}

func (*AmiMekanisme) TableName

func (m *AmiMekanisme) TableName() string

type AmiProdi

type AmiProdi struct {
	IDProdi    int            `gorm:"primaryKey;column:id_prodi" json:"-"`
	IDFakultas int            `gorm:"column:id_fakultas" json:"idFakultas"`
	Prodi      string         `gorm:"column:prodi" json:"prodi"`
	Jenjang    string         `gorm:"column:jenjang" json:"jenjang"`
	Kaprodi    string         `gorm:"column:kaprodi" json:"kaprodi"`
	Nidn       string         `gorm:"column:nidn" json:"nidn"`
	Niknip     sql.NullString `gorm:"column:niknip" json:"niknip"`
	Telp       sql.NullString `gorm:"column:telp" json:"telp"`
	Email      sql.NullString `gorm:"column:email" json:"email"`
	Foto       sql.NullString `gorm:"column:foto" json:"foto"`
	Password   string         `gorm:"column:password" json:"password"`
	IDSiklus   sql.NullInt32  `gorm:"column:id_siklus" json:"idSiklus"`
}

func (*AmiProdi) TableName

func (m *AmiProdi) TableName() string

type AmiSetting

type AmiSetting struct {
	IDSetting int    `gorm:"primaryKey;column:id_setting" json:"-"`
	NmPt      string `gorm:"column:nm_pt" json:"nmPt"`
	Footer    string `gorm:"column:footer" json:"footer"`
	Favicon   string `gorm:"column:favicon" json:"favicon"`
	Kampus    string `gorm:"column:kampus" json:"kampus"`
}

func (*AmiSetting) TableName

func (m *AmiSetting) TableName() string

type AmiSiklus

type AmiSiklus struct {
	IDSiklus int `gorm:"primaryKey;column:id_siklus" json:"-"`
	Tahun    int `gorm:"column:tahun" json:"tahun"`
}

func (*AmiSiklus) TableName

func (m *AmiSiklus) TableName() string

type AmiStandar

type AmiStandar struct {
	IDStandar  int            `gorm:"primaryKey;column:id_standar" json:"-"`
	Standar    sql.NullString `gorm:"column:standar" json:"standar"`
	UtkPilihan string         `gorm:"column:utk_pilihan" json:"utkPilihan"`
	Isi        string         `gorm:"column:isi" json:"isi"`
	IDSiklus   int            `gorm:"column:id_siklus" json:"idSiklus"`
}

func (*AmiStandar) TableName

func (m *AmiStandar) TableName() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL