proto.api.OrderContractListRes */ class OrderContractListRes extends \Google\Protobuf\Internal\Message { /** * 数据列表数组 * * Generated from protobuf field repeated .proto.api.EntOrderContract list = 1; */ private $list; /** * 总数 * * Generated from protobuf field int32 total = 2; */ protected $total = 0; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type array<\Proto\Api\EntOrderContract>|\Google\Protobuf\Internal\RepeatedField $list * 数据列表数组 * @type int $total * 总数 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\OrderContract::initOnce(); parent::__construct($data); } /** * 数据列表数组 * * Generated from protobuf field repeated .proto.api.EntOrderContract list = 1; * @return \Google\Protobuf\Internal\RepeatedField */ public function getList() { return $this->list; } /** * 数据列表数组 * * Generated from protobuf field repeated .proto.api.EntOrderContract list = 1; * @param array<\Proto\Api\EntOrderContract>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setList($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\EntOrderContract::class); $this->list = $arr; return $this; } /** * 总数 * * Generated from protobuf field int32 total = 2; * @return int */ public function getTotal() { return $this->total; } /** * 总数 * * Generated from protobuf field int32 total = 2; * @param int $var * @return $this */ public function setTotal($var) { GPBUtil::checkInt32($var); $this->total = $var; return $this; } }