Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Credential ¶
type Pemasukan ¶
type Pemasukan struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Tanggal_masuk string `bson:"tanggal_masuk,omitempty" json:"tanggal_masuk,omitempty"` Jumlah_masuk int `bson:"jumlah_masuk,omitempty" json:"jumlah_masuk,omitempty"` Sumber string `bson:"sumber,omitempty" json:"sumber,omitempty"` Deskripsi string `bson:"deskripsi,omitempty" json:"deskripsi,omitempty"` User User `bson:"user,omitempty" json:"user,omitempty"` }
type PemasukanResponse ¶
type Pengeluaran ¶
type Pengeluaran struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Tanggal_keluar string `bson:"tanggal_keluar,omitempty" json:"tanggal_keluar,omitempty"` Jumlah_keluar int `bson:"jumlah_keluar,omitempty" json:"jumlah_keluar,omitempty"` Sumber string `bson:"sumber,omitempty" json:"sumber,omitempty"` Deskripsi string `bson:"deskripsi,omitempty" json:"deskripsi,omitempty"` User User `bson:"user,omitempty" json:"user,omitempty"` }
type PengeluaranResponse ¶
type PengeluaranResponse struct { Status bool `json:"status" bson:"status"` Message string `json:"message,omitempty" bson:"message,omitempty"` Data []Pengeluaran `json:"data" bson:"data"` }
type User ¶
type User struct { ID primitive.ObjectID `bson:"_id,omitempty" json:"_id,omitempty"` Username string `bson:"username,omitempty" json:"username,omitempty"` Email string `bson:"email,omitempty" json:"email,omitempty"` Phonenumber string `bson:"phonenumber,omitempty" json:"phonenumber,omitempty"` Password string `bson:"password,omitempty" json:"password,omitempty"` ConfirmPassword string `bson:"confirmpassword,omitempty" json:"confirmpassword,omitempty"` }
Click to show internal directories.
Click to hide internal directories.