total_num = $total_num; } /** * 总数目 * @return int32 */ public function getTotalNum() { return $this->total_num; } /** * @var array $items */ public function setList($items) { $this->list = array(); foreach ($items as $k => $v) { array_push($this->list, new DealerOrderInfo($v)); } } /** * 条目信息 * @return DealerOrderInfo[] */ public function getList() { return $this->list; } }