SsGroupNode.php 787 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Http\Models;
  3. use Eloquent;
  4. use Illuminate\Database\Eloquent\Builder;
  5. use Illuminate\Database\Eloquent\Model;
  6. /**
  7. * SS分组和节点关联表
  8. * Class SsNodeGroup
  9. *
  10. * @package App\Http\Models
  11. * @mixin Eloquent
  12. * @property int $id
  13. * @property int $group_id 分组ID
  14. * @property int $node_id 节点ID
  15. * @method static Builder|SsGroupNode newModelQuery()
  16. * @method static Builder|SsGroupNode newQuery()
  17. * @method static Builder|SsGroupNode query()
  18. * @method static Builder|SsGroupNode whereGroupId($value)
  19. * @method static Builder|SsGroupNode whereId($value)
  20. * @method static Builder|SsGroupNode whereNodeId($value)
  21. */
  22. class SsGroupNode extends Model
  23. {
  24. public $timestamps = FALSE;
  25. protected $table = 'ss_group_node';
  26. protected $primaryKey = 'id';
  27. }