Module Recettes : on avance encore...

This commit is contained in:
2021-04-28 20:37:58 +02:00
parent 9976d2ff76
commit 375e4e5d49
26 changed files with 657 additions and 99 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace Recettes\Model;
use Recettes\Model\Base\Recipe as BaseRecipe;
/**
* Skeleton subclass for representing a row from the 'recipe' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class Recipe extends BaseRecipe
{
}

View File

@@ -0,0 +1,20 @@
<?php
namespace Recettes\Model;
use Recettes\Model\Base\RecipeProducts as BaseRecipeProducts;
/**
* Skeleton subclass for representing a row from the 'recipe_products' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class RecipeProducts extends BaseRecipeProducts
{
}

View File

@@ -0,0 +1,20 @@
<?php
namespace Recettes\Model;
use Recettes\Model\Base\RecipeProductsQuery as BaseRecipeProductsQuery;
/**
* Skeleton subclass for performing query and update operations on the 'recipe_products' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class RecipeProductsQuery extends BaseRecipeProductsQuery
{
}

View File

@@ -0,0 +1,20 @@
<?php
namespace Recettes\Model;
use Recettes\Model\Base\RecipeQuery as BaseRecipeQuery;
/**
* Skeleton subclass for performing query and update operations on the 'recipe' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class RecipeQuery extends BaseRecipeQuery
{
}

View File

@@ -0,0 +1,20 @@
<?php
namespace Recettes\Model;
use Recettes\Model\Base\RecipeSteps as BaseRecipeSteps;
/**
* Skeleton subclass for representing a row from the 'recipe_steps' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class RecipeSteps extends BaseRecipeSteps
{
}

View File

@@ -0,0 +1,20 @@
<?php
namespace Recettes\Model;
use Recettes\Model\Base\RecipeStepsQuery as BaseRecipeStepsQuery;
/**
* Skeleton subclass for performing query and update operations on the 'recipe_steps' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class RecipeStepsQuery extends BaseRecipeStepsQuery
{
}