| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- class PHPExcel_Shared_Escher_DgContainer
- {
- /**
- * Drawing index, 1-based.
- *
- * @var int
- */
- private $dgId;
- /**
- * Last shape index in this drawing
- *
- * @var int
- */
- private $lastSpId;
- private $spgrContainer = null;
- public function getDgId()
- {
- return $this->dgId;
- }
- public function setDgId($value)
- {
- $this->dgId = $value;
- }
- public function getLastSpId()
- {
- return $this->lastSpId;
- }
- public function setLastSpId($value)
- {
- $this->lastSpId = $value;
- }
- public function getSpgrContainer()
- {
- return $this->spgrContainer;
- }
- public function setSpgrContainer($spgrContainer)
- {
- return $this->spgrContainer = $spgrContainer;
- }
- }
|