id; } /** * 赋值 id * @param int $id id * @return static */ public function setId($id) { $this->id = $id; return $this; } /** * randomNumber * @Column(name="randomNumber", type="int", length=11, accuracy=0, nullable=false, default="0", isPrimaryKey=false, primaryKeyIndex=-1, isAutoIncrement=false) * @var int */ protected $randomNumber; /** * 获取 randomNumber * * @return int */ public function getRandomNumber() { return $this->randomNumber; } /** * 赋值 randomNumber * @param int $randomNumber randomNumber * @return static */ public function setRandomNumber($randomNumber) { $this->randomNumber = $randomNumber; return $this; } }