1.提交缺失的东西

This commit is contained in:
2025-05-18 17:17:10 +08:00
parent 49beb4ee65
commit 6a2f35fa31
5 changed files with 506 additions and 2 deletions

View File

@ -19,11 +19,12 @@
namespace app\common\model;
use app\common\model\BaseModel;
use think\Model;
class Goods extends Model
class Goods extends BaseModel
{
protected $name = 'goods';
const STATUS_RECYCLE = -1; // 回收站
const STATUS_STORAGE = 0; // 下架(仓库中)
const STATUS_SELL = 1; // 上架 (销售中)