| 1234567891011121314151617181920212223242526272829303132333435 |
- <?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'];
- const tl_type_one = 1;
- const tl_type_two = 2;
- public static $tl_type_name = [
- self::tl_type_one => '基础应答',
- self::tl_type_two => '升级应答',
- ];
- const tl_way_one = 1;
- const tl_way_two = 2;
- public static $tl_way_name = [
- self::tl_way_one => '一次性交付',
- self::tl_way_two => '分批交付',
- ];
- const tl_result_one = 1;
- const tl_result_two = 2;
- public static $tl_result_name = [
- self::tl_result_one => '同意',
- self::tl_result_two => '不同意',
- ];
- }
|