TagData.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\models;
  3. use Yii;
  4. /**
  5. * This is the model class for table "{{%tag_data}}".
  6. *
  7. * @property int $id ID
  8. * @property int $tag_id 标签id
  9. * @property string $table_name 数据表
  10. * @property int $data_id 信息id
  11. * @property int $user_id 添加者
  12. * @property int $create_time 添加时间
  13. */
  14. class TagData extends \app\common\models\EActiveRecord
  15. {
  16. /**
  17. * {@inheritdoc}
  18. */
  19. public static function tableName()
  20. {
  21. return '{{%tag_data}}';
  22. }
  23. /**
  24. * {@inheritdoc}
  25. */
  26. public function rules()
  27. {
  28. return [
  29. [['tag_id', 'table_name', 'data_id', 'user_id', 'create_time'], 'required'],
  30. [['tag_id', 'data_id', 'user_id', 'create_time'], 'integer'],
  31. [['table_name'], 'string', 'max' => 50],
  32. ];
  33. }
  34. /**
  35. * {@inheritdoc}
  36. */
  37. public function attributeLabels()
  38. {
  39. return [
  40. 'id' => 'ID',
  41. 'tag_id' => '标签id',
  42. 'table_name' => '数据表',
  43. 'data_id' => '信息id',
  44. 'user_id' => '添加者',
  45. 'create_time' => '添加时间',
  46. ];
  47. }
  48. }