1.缺失信息提交

This commit is contained in:
2025-05-07 12:18:08 +08:00
parent 4da5dc858a
commit 62532ca66a
4 changed files with 729 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
namespace app\common\model\goods;
use think\Model;
use think\model\concern\SoftDelete;
class GoodsBrand extends Model
{
use SoftDelete;
protected $defaultSoftDelete = 0;
protected $deleteTime = 'del';
}