mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-25 21:18:11 +00:00
30 lines
467 B
PHP
30 lines
467 B
PHP
<?php
|
|
|
|
namespace app\model\product\product;
|
|
|
|
use crmeb\basic\BaseModel;
|
|
use crmeb\traits\ModelTrait;
|
|
|
|
/**
|
|
* 商品标签分类模型
|
|
* @author wuhaotian
|
|
* @email 442384644@qq.com
|
|
* @date 2024/12/19
|
|
*/
|
|
class StoreProductLabelCate extends BaseModel
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* 数据表主键
|
|
* @var string
|
|
*/
|
|
protected $pk = 'id';
|
|
|
|
/**
|
|
* 模型名称
|
|
* @var string
|
|
*/
|
|
protected $name = 'store_product_label_cate';
|
|
}
|