상세수정
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-02-05 12:41:07 +09:00
parent 36355f75f3
commit 790216404c
8 changed files with 1108 additions and 29 deletions

View File

@@ -5,6 +5,19 @@ use CodeIgnier\Model;
class FaxModel extends Model
{
/**
* FAX 내용중 하나만 가져오기
*/
public function selectFax($faxSq)
{
$sql = "SELECT mid, caller_no, recv_time, fax_sq, file_path, file_name, thumbnail, img_width, img_height, img_size" .
" FROM fax_imgs" .
" WHERE fax_sq = ?";
$data = array($faxSq);
$query = $this->db->query($sql, $data);
return $query->getRowArray();
}
public function selectFaxListNotExistsThumb()
{
helper('cron');