feat(studio.resource): 增加了晶格任务的实体底面厚度的字段

Signed-off-by: 李东云 <dongyun.li@luxcreo.ai>
This commit is contained in:
李东云
2022-08-04 14:20:41 +08:00
parent 7697af5232
commit d03a8c5fa3

View File

@@ -22,8 +22,14 @@ use Singularity\HDK\Studio\Resource\Workspace\Tasks\OrderDetail;
* Created on 2022/7/26 * Created on 2022/7/26
* *
* @inheritDoc * @inheritDoc
* @property float|null $bottomThickness
*/ */
class Lattice extends OrderDetail class Lattice extends OrderDetail
{ {
public function toArray(): array
{
return parent::toArray() + [
'bottomThickness' => $this->bottomThickness,
];
}
} }