| 1234567891011121314 |
- <?php
- namespace App\Model;
- class ReminderRecord extends UseScopeBaseModel
- {
- protected $table = "reminder_record"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- const employee_column = "crt_id";
- public static $field = ['reminder_id','id','tl_type','tl_result','tl_ways','crt_time'];
- }
|