// +---------------------------------------------------------------------- namespace app\model\store\product; use crmeb\basic\BaseModel; use crmeb\traits\ModelTrait; use think\Model; /** * 分店商品属性辅助表 * Class ProductAttrValue * @package app\model\store\product */ class ProductAttrValue extends BaseModel { use ModelTrait; /** * 数据表主键 * @var string */ protected $pk = 'id'; /** * 模型名称 * @var string */ protected $name = 'store_branch_product_attr_value'; }