From 88846b52b79202fe2c71c3b9ec81470b911cad11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E4=B8=9C=E4=BA=91?= Date: Mon, 19 Dec 2022 15:56:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(studio):=20=E5=9C=A8=E5=B7=A5=E4=BD=9C?= =?UTF-8?q?=E5=8C=BA=E8=AF=A6=E6=83=85=E4=B8=AD=E6=96=B0=E5=A2=9E=E4=BA=86?= =?UTF-8?q?=E8=A7=84=E5=88=99=E6=99=B6=E6=A0=BC=E7=9A=84=E6=8A=BD=E5=A3=B3?= =?UTF-8?q?=E5=8E=9A=E5=BA=A6=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Studio/Resource/Workspace/Tasks/Detail/Lattice.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Studio/Resource/Workspace/Tasks/Detail/Lattice.php b/src/Studio/Resource/Workspace/Tasks/Detail/Lattice.php index d9fe15e..983c3a7 100644 --- a/src/Studio/Resource/Workspace/Tasks/Detail/Lattice.php +++ b/src/Studio/Resource/Workspace/Tasks/Detail/Lattice.php @@ -22,6 +22,7 @@ use Singularity\HDK\Studio\Resource\Workspace\Tasks\OrderDetail; * Created on 2022/7/26 * * @inheritDoc + * @property int|null $shellThickness * @property float|null $bottomThickness */ class Lattice extends OrderDetail @@ -29,6 +30,7 @@ class Lattice extends OrderDetail public function toArray(): array { return parent::toArray() + [ + 'shellThickness' => $this->shellThickness, 'bottomThickness' => $this->bottomThickness, ]; }