for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the slince/smartqq package.
*
* (c) Slince <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Slince\SmartQQ\Entity;
class Group
{
/**
* gid.
* @var int
protected $id;
* @var string
protected $name;
protected $code;
protected $flag;
protected $markName;
* @param int $id
public function setId($id)
$this->id = $id;
}
* @return int
public function getId()
return $this->id;
* @param string $name
public function setName($name)
$this->name = $name;
* @return string
public function getName()
return $this->name;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getCode()
return $this->code;
* @param int $flag
public function setFlag($flag)
$this->flag = $flag;
public function getFlag()
return $this->flag;
* @param string $markName
public function setMarkName($markName)
$this->markName = $markName;
public function getMarkName()
return $this->markName;