// +---------------------------------------------------------------------- namespace app\common\model\store\product; use app\common\model\BaseModel; use app\common\model\system\merchant\Merchant; use app\common\repositories\store\product\ProductAssistSetRepository; use app\common\repositories\store\product\ProductAssistUserRepository; use app\common\repositories\store\product\SpuRepository; class ProductResult extends BaseModel { static function tablePk(): string { return 'id'; } public static function tableName(): string { return 'store_product_attr_result'; } }