您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

53 行
1.1KB

  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. use common\models\Produit;
  5. /**
  6. * This is the model class for table "commande_auto_produit".
  7. *
  8. * @property integer $id
  9. * @property integer $id_commande_auto
  10. * @property integer $id_produit
  11. * @property double $quantite
  12. */
  13. class CommandeAutoProduit extends \yii\db\ActiveRecord {
  14. /**
  15. * @inheritdoc
  16. */
  17. public static function tableName() {
  18. return 'commande_auto_produit';
  19. }
  20. /**
  21. * @inheritdoc
  22. */
  23. public function rules() {
  24. return [
  25. [['id_commande_auto', 'id_produit'], 'required'],
  26. [['id_commande_auto', 'id_produit'], 'integer'],
  27. [['quantite'], 'number'],
  28. ];
  29. }
  30. /**
  31. * @inheritdoc
  32. */
  33. public function attributeLabels() {
  34. return [
  35. 'id' => 'ID',
  36. 'id_commande_auto' => 'Id Commande Auto',
  37. 'id_produit' => 'Id Produit',
  38. 'quantite' => 'Quantite',
  39. ];
  40. }
  41. public function getProduit() {
  42. return $this->hasOne(Produit::className(), ['id' => 'id_produit']);
  43. }
  44. }