likeshop/server/application/common/model/DistributionGoods.php
2025-07-27 21:42:34 +08:00

11 lines
193 B
PHP

<?php
namespace app\common\model;
use think\Model;
use think\model\concern\SoftDelete;
class DistributionGoods extends Model
{
use SoftDelete;
protected $deleteTime = 'delete_time';
}