mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKit.git
synced 2026-01-15 00:35:08 +08:00
feat(studio): 添加了 task 的 action 枚举
Signed-off-by: 李东云 <dongyun.li@luxcreo.ai>
This commit is contained in:
32
src/Studio/Enums/TaskAction.php
Normal file
32
src/Studio/Enums/TaskAction.php
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user