feat(studio): 在工作区详情中新增了规则晶格的抽壳厚度字段

This commit is contained in:
李东云
2022-12-19 15:56:52 +08:00
parent 8d0cf2617b
commit 88846b52b7

View File

@@ -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,
];
}