feat: sku

This commit is contained in:
2025-01-07 17:55:58 +08:00
parent fd18cffeab
commit fd70dfabf5
8 changed files with 295 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\Constants\Common;
class GoodCode
{
/***
* @var int 1=未删除 2=已删除
*/
const int SPU_IS_NO_DEL = 1;
const int SPU_IS_DELETE = 2;
/**
* @var int 1=未删除 2=已删除
*/
const int SKU_IS_NO_DEL = 1;
const int SKU_IS_DELETE = 2;
}