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

This commit is contained in:
yangsh
2026-02-04 10:48:51 +09:00
parent 107cc395d6
commit 2c96bd12de
10 changed files with 5052 additions and 1123 deletions

View File

@@ -704,4 +704,19 @@ class M710Model extends Model
}
public function get_send_yn($type)
{
$sql = "SELECT stop_yn
FROM v2_stop_api_chg_stat
WHERE TYPE = ?
ORDER BY pk DESC
LIMIT 1";
$date = array(
$type
);
$query = $this->db->query($sql, $date);
$return = $query->getRowArray();
return $return;
}
}