|
- <?php
-
- namespace common\models;
-
- use Yii;
- use common\models\Produit;
-
- /**
- * This is the model class for table "commande_auto_produit".
- *
- * @property integer $id
- * @property integer $id_commande_auto
- * @property integer $id_produit
- * @property double $quantite
- */
- class CommandeAutoProduit extends \yii\db\ActiveRecord {
-
- /**
- * @inheritdoc
- */
- public static function tableName() {
- return 'commande_auto_produit';
- }
-
- /**
- * @inheritdoc
- */
- public function rules() {
- return [
- [['id_commande_auto', 'id_produit'], 'required'],
- [['id_commande_auto', 'id_produit'], 'integer'],
- [['quantite'], 'number'],
- ];
- }
-
- /**
- * @inheritdoc
- */
- public function attributeLabels() {
- return [
- 'id' => 'ID',
- 'id_commande_auto' => 'Id Commande Auto',
- 'id_produit' => 'Id Produit',
- 'quantite' => 'Quantite',
- ];
- }
-
- public function getProduit() {
- return $this->hasOne(Produit::className(), ['id' => 'id_produit']);
- }
-
- }
|