| 12345678910111213141516 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\ModelLogChanging;
- class WorkOrderChildType extends Model
- {
- use ModelLogChanging;
- // 工单类型 子 类型
- protected $fillable = ['work_order_type_id','name','table_name'];
- }
|