13 lines
186 B
PHP
13 lines
186 B
PHP
<?php
|
|
namespace app\api\model\food;
|
|
|
|
use app\common\model\food\SpecValue as SpecValueModel;
|
|
|
|
/**
|
|
* 规格/属性(值)模型
|
|
*/
|
|
class SpecValue extends SpecValueModel
|
|
{
|
|
|
|
}
|