| 1234567891011121314151617181920212223 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- //审批流模板表
- class WorkFlowTemplates extends DataScopeBaseModel
- {
- protected $guarded = [];
- protected $table = "workflow_templates"; //指定表
- const CREATED_AT = 'crt_time';
- const UPDATED_AT = 'upd_time';
- protected $dateFormat = 'U';
- public static $field = ['id', 'code', 'title', 'crt_id', 'crt_time', 'upd_time'];
- /**
- * 属性转换为原生类型
- */
- protected $casts = [
- 'content' => 'array', // 声明 content 字段读取时自动转为数组
- ];
- }
|