Dictionary.php 949 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace common\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "dictionary".
  6. *
  7. * @property int $id id
  8. * @property string|null $name 分类名称
  9. * @property string|null $param_name 分类名称
  10. * @property int|null $pid 父ID
  11. * @property int|null $has_children
  12. * @property int|null $status 状态 0禁用 1启用
  13. * @property string|null $remark 描述
  14. * @property int|null $sort 排序
  15. * @property int|null $multiple
  16. * @property int|null $can_change
  17. * @property int|null $can_children
  18. * @property int|null $can_multiple
  19. */
  20. class Dictionary extends \yii\db\ActiveRecord
  21. {
  22. /**
  23. * {@inheritdoc}
  24. */
  25. public static function tableName()
  26. {
  27. return 'dictionary';
  28. }
  29. /**
  30. * {@inheritdoc}
  31. */
  32. public function rules()
  33. {
  34. return [
  35. ];
  36. }
  37. /**
  38. * {@inheritdoc}
  39. */
  40. public function attributeLabels()
  41. {
  42. return [
  43. ];
  44. }
  45. }