feat(studio): 添加了 task 的 action 枚举

Signed-off-by: 李东云 <dongyun.li@luxcreo.ai>
This commit is contained in:
李东云
2022-05-17 19:11:55 +08:00
parent c5362d4675
commit 71d3b18ccd

View File

@@ -0,0 +1,32 @@
<?php
/**
* TaskAction.php@HDK
*
* @author 李东云<dongyun.li@luxcreo.cn>
* Powered by PhpStorm
* Created on 2022/5/17
*/
declare(strict_types=1);
namespace Singularity\HDK\Studio\Enums;
use MyCLabs\Enum\Enum;
/**
* Singularity\HDK\Studio\Enums\TaskAction@HDK
*
* @author 李东云<dongyun.li@luxcreo.cn>
* Powered by PhpStorm
* Created on 2022/5/17
*
* @method static TaskAction PREFLIGHT 预检修复
* @method static TaskAction FRAME 线框模型生成
* @method static TaskAction LATTICE 晶格模型生成
*/
final class TaskAction extends Enum
{
private const PREFLIGHT = 'preflight';
private const FRAME = 'frame';
private const LATTICE = 'lattice';
}