Cell.php 993 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. namespace app\models\entity;
  3. use Yii;
  4. /**
  5. * This is the model class for table "tmc_cell".
  6. *
  7. * @property int $id
  8. * @property string $title
  9. * @property int $stack
  10. * @property int $number
  11. */
  12. class Cell extends \yii\db\ActiveRecord
  13. {
  14. /**
  15. * {@inheritdoc}
  16. */
  17. public static function tableName()
  18. {
  19. return 'tmc_cell';
  20. }
  21. /**
  22. * {@inheritdoc}
  23. */
  24. public function rules()
  25. {
  26. return [
  27. [['number', 'stack'], 'integer'],
  28. [['title'], 'string', 'max' => 255],
  29. ];
  30. }
  31. /**
  32. * {@inheritdoc}
  33. */
  34. public function attributeLabels()
  35. {
  36. return [
  37. 'id' => 'ID',
  38. 'title' => 'Title',
  39. 'stack' => 'ID stack',
  40. 'number' => 'Number of warehouse',
  41. ];
  42. }
  43. /** @return Stack|null */
  44. public function getStack()
  45. {
  46. return Stack::findOne($this->stack);
  47. }
  48. }