SsGroupNode.php 739 B

12345678910111213141516171819202122232425262728
  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. *
  9. * @property int $id
  10. * @property int $group_id 分组ID
  11. * @property int $node_id 节点ID
  12. * @method static Builder|SsGroupNode newModelQuery()
  13. * @method static Builder|SsGroupNode newQuery()
  14. * @method static Builder|SsGroupNode query()
  15. * @method static Builder|SsGroupNode whereGroupId($value)
  16. * @method static Builder|SsGroupNode whereId($value)
  17. * @method static Builder|SsGroupNode whereNodeId($value)
  18. * @mixin Eloquent
  19. */
  20. class SsGroupNode extends Model {
  21. public $timestamps = false;
  22. protected $table = 'ss_group_node';
  23. protected $primaryKey = 'id';
  24. }