|
@@ -0,0 +1,11 @@
|
|
|
+<?php
|
|
|
+if (!defined('BASEPATH'))exit('No direct script access allowed');
|
|
|
+include_once(FCPATH . 'application/models/Base_model.php');
|
|
|
+class AlarmSendUserInfo_model extends Base_model {
|
|
|
+
|
|
|
+ protected $table = 'alarm_send_user_info';
|
|
|
+
|
|
|
+ public function __construct() {
|
|
|
+ parent::__construct();
|
|
|
+ }
|
|
|
+}
|