1234567891011121314151617181920212223242526272829 |
- <?php
- declare (strict_types = 1);
- namespace App\Model;
- use Hyperf\DbConnection\Model\Model;
- class Order extends Model
- {
- public bool $timestamps = true;
-
- protected ?string $table = 'order';
-
- protected array $fillable = [];
-
- protected array $casts = [];
- }
|