1.提交缺失的东西

This commit is contained in:
2025-05-16 15:31:11 +08:00
parent d82516007d
commit 744f7d92ed
4 changed files with 67 additions and 5 deletions

View File

@ -0,0 +1,11 @@
<?php
namespace app\common\model\distribution;
use think\Model;
use think\model\concern\SoftDelete;
class DistributionGoods extends Model
{
use SoftDelete;
protected $deleteTime = 'delete_time';
}