first commit

This commit is contained in:
2023-08-28 09:36:03 +08:00
commit 39bfe97021
15 changed files with 925 additions and 0 deletions

17
src/Model/WounicomWeb.php Normal file
View File

@@ -0,0 +1,17 @@
<?php
namespace XuanChen\WoUnicomWeb\Model;
use Illuminate\Database\Eloquent\Model;
class WounicomWeb extends Model
{
protected $guarded = [];
public $casts = [
'source' => 'json',
'outsource' => 'json',
];
}