First Commit

This commit is contained in:
2021-09-15 21:00:06 +07:00
commit 3e8392928f
319 changed files with 75599 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?php
class JenisModel extends CI_Model
{
private $_table = "tb_jenis";
public function getJenis(){
return $user = $this->db->get($this->_table)->result();
}
public function getJenisById($id_jenis){
$this->db->where('id_jenis', $id_jenis);
return $user = $this->db->get($this->_table)->row();
}
}