udm-rules-vue 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/EventBus.d.ts +1 -0
- package/dist/FileDeployPackageBuilder.d.ts +0 -2
- package/dist/FileUtils.d.ts +17 -22
- package/dist/OutputChannelManager.d.ts +37 -6
- package/dist/ServerRequestResponse.d.ts +6 -0
- package/dist/assets/builtin/Constants.bom +9 -0
- package/dist/assets/builtin/Constants_zh_CN.voc +11 -1
- package/dist/assets/builtin/Scorecard.bom +8 -0
- package/dist/assets/builtin/Scorecard_zh_CN.voc +10 -0
- package/dist/assets/builtin/StaticMethod.bom +1 -0
- package/dist/assets/builtin/StaticMethod_zh_CN.voc +1 -0
- package/dist/assets/css/index.css +1 -1
- package/dist/bom/bomSerialize.d.ts +2 -1
- package/dist/bom/model.d.ts +2 -1
- package/dist/brl/PureWebRuleEditor.vue.d.ts +4 -3
- package/dist/brl/RuleDocument.d.ts +1 -1
- package/dist/brl/RuleEditor.vue.d.ts +2 -2
- package/dist/brl/RuleEditorComponent.vue.d.ts +3 -3
- package/dist/brl/RuleUtils.d.ts +1 -1
- package/dist/command/CompileB2xFilesCommand.d.ts +4 -0
- package/dist/command/CompileRuleFilesCommand.d.ts +9 -4
- package/dist/command/DiagnoseFileCommand.d.ts +6 -0
- package/dist/command/SyncCompiledFilesCommand.d.ts +3 -0
- package/dist/command/UpdateUuidCommand.d.ts +2 -2
- package/dist/compile/BomCompiler.d.ts +96 -0
- package/dist/compile/DecisionTableCompiler.d.ts +4 -4
- package/dist/compile/ExpressionBuilder.d.ts +0 -3
- package/dist/compile/FileCompiler.d.ts +11 -2
- package/dist/compile/FlowCompiler.d.ts +20 -4
- package/dist/compile/PureWebCompiler.d.ts +1 -0
- package/dist/compile/RuleCompiler.d.ts +2 -2
- package/dist/compile/ScoreCardCompiler.d.ts +14 -0
- package/dist/compile/compileRuleScript.d.ts +6 -1
- package/dist/components/message/Toast.vue.d.ts +6 -0
- package/dist/components/message/events.d.ts +20 -0
- package/dist/components/process/events.d.ts +0 -3
- package/dist/components/tree/TreeNode.vue.d.ts +2 -0
- package/dist/content.d.ts +2 -0
- package/dist/dta/DecisionTableDeserialize.d.ts +2 -1
- package/dist/dta/DecisionTableJsonSerialize.d.ts +2 -0
- package/dist/dta/DecisionTableXmlSerialize.d.ts +2 -0
- package/dist/dta/component/DecisionTable.d.ts +1 -0
- package/dist/dta/model/DecisionTableModel.d.ts +3 -0
- package/dist/dta/webview/DecisionTableDocument.d.ts +1 -1
- package/dist/dtr/webview/DecisionTreeDocument.d.ts +1 -1
- package/dist/extension.d.ts +2 -1
- package/dist/grammar/BusinessParseRuleContext.d.ts +5 -0
- package/dist/grammar/ParserHelper.d.ts +20 -2
- package/dist/grammar/TokenAssertor.d.ts +0 -4
- package/dist/grammar/bom/BomLexer.d.ts +33 -32
- package/dist/grammar/bom/BomParser.d.ts +35 -33
- package/dist/grammar/diagnostic/SemanticDiagnostic.d.ts +13 -2
- package/dist/grammar/parser/BoostRuleParser.d.ts +36 -2
- package/dist/grammar/rule/RuleParser.d.ts +42 -35
- package/dist/index.d.ts +12 -4
- package/dist/index.js +91342 -80573
- package/dist/index.umd.js +398 -313
- package/dist/model/BO.d.ts +15 -1
- package/dist/model/Datatype.d.ts +1 -0
- package/dist/model/NavigationTree.d.ts +3 -3
- package/dist/model/VscodeBuiltinObjectsLoader.d.ts +2 -0
- package/dist/model/WebBuiltinObjectsLoader.d.ts +3 -1
- package/dist/model/WebViewBomFilesReader.d.ts +1 -1
- package/dist/model/expression/ArithExpression.d.ts +2 -1
- package/dist/model/expression/BatchExpression.d.ts +2 -1
- package/dist/model/expression/Expression.d.ts +2 -1
- package/dist/model/expression/MethodExpression.d.ts +5 -3
- package/dist/model/expression/PredefineExpression.d.ts +2 -1
- package/dist/model/expression/RuleExpression.d.ts +3 -2
- package/dist/model/expression/compile/commonMethodScriptCompile.d.ts +2 -1
- package/dist/model/expression/compile/compareMethodScriptCompile.d.ts +2 -1
- package/dist/monaco/ExpressionFinder.d.ts +4 -3
- package/dist/monaco/MonacoHoverProvider.d.ts +0 -2
- package/dist/monaco/parseTargetPartRuleScript.d.ts +1 -1
- package/dist/projectprops/ProjectProperties.d.ts +2 -0
- package/dist/projectprops/ProjectPropertiesEditor.vue.d.ts +20 -0
- package/dist/projectprops/PureWebProjectPropertiesEditor.vue.d.ts +20 -0
- package/dist/projectprops/Ruleset.vue.d.ts +10 -0
- package/dist/quicktest/TestUtils.d.ts +12 -4
- package/dist/rfl/MenuFactory.d.ts +3 -3
- package/dist/rfl/config/Enums.d.ts +2 -1
- package/dist/rfl/data/ActionNodeData.d.ts +1 -0
- package/dist/rfl/data/ConnectionData.d.ts +7 -4
- package/dist/rfl/data/NodeData.d.ts +7 -0
- package/dist/rfl/data/RuleFile.d.ts +4 -1
- package/dist/rfl/data/RuleNodeData.d.ts +1 -0
- package/dist/rfl/data/SubflowNodeData.d.ts +1 -0
- package/dist/rfl/data/TaskNodeData.d.ts +5 -0
- package/dist/rfl/definition/ProcessDef.d.ts +53 -7
- package/dist/rfl/definition/ProcessNodeDef.d.ts +11 -0
- package/dist/rfl/definition/node/ActionTaskNodeDef.d.ts +1 -6
- package/dist/rfl/definition/node/ConnectionFactoryDef.d.ts +2 -1
- package/dist/rfl/definition/node/CustomTaskNodeDef.d.ts +32 -0
- package/dist/rfl/definition/node/FlowConnectionDef.d.ts +12 -0
- package/dist/rfl/definition/node/FlowProcessNodeDef.d.ts +1 -0
- package/dist/rfl/definition/node/ForkNodeDef.d.ts +7 -0
- package/dist/rfl/definition/node/JoinNodeDef.d.ts +11 -0
- package/dist/rfl/definition/node/NodeType.d.ts +16 -3
- package/dist/rfl/definition/node/RuleTaskNodeDef.d.ts +5 -0
- package/dist/rfl/definition/node/StartTaskNodeDef.d.ts +1 -5
- package/dist/rfl/definition/node/StopTaskNodeDef.d.ts +1 -0
- package/dist/rfl/definition/node/SubflowTaskNodeDef.d.ts +5 -0
- package/dist/rfl/designer/Designer.vue.d.ts +2 -2
- package/dist/rfl/designer/DesignerComponent.vue.d.ts +2 -2
- package/dist/rfl/designer/ProcessUtils.d.ts +2 -2
- package/dist/rfl/designer/PureWebFlowEditor.vue.d.ts +4 -2
- package/dist/rfl/designer/editor/BezierEdge.vue.d.ts +5 -0
- package/dist/rfl/designer/editor/HelperLines.vue.d.ts +9 -0
- package/dist/rfl/designer/editor/HelperLinseUtils.d.ts +8 -0
- package/dist/rfl/designer/editor/ProcessEditor.vue.d.ts +1 -1
- package/dist/rfl/designer/editor/SmoothStepEdge.vue.d.ts +5 -0
- package/dist/rfl/events.d.ts +7 -1
- package/dist/rfl/node/NodeUtils.d.ts +10 -4
- package/dist/rfl/props/ConnectionProperty.vue.d.ts +2 -1
- package/dist/rfl/props/ForkNodeProperty.vue.d.ts +1 -1
- package/dist/rfl/props/JoinNodeProperty.vue.d.ts +1 -1
- package/dist/rfl/props/SchemaFormProperty.vue.d.ts +13 -0
- package/dist/rfl/registry/TaskNodeTypeRegistry.d.ts +195 -0
- package/dist/rfl/webview/RuleFlowDocument.d.ts +1 -1
- package/dist/rfl/webview/RuleFlowEditorProvider.d.ts +5 -0
- package/dist/sca/AvaliablePredefineBuilder.d.ts +4 -0
- package/dist/sca/ContentEditableController.d.ts +50 -0
- package/dist/sca/PureWebScoreCardEditor.vue.d.ts +71 -0
- package/dist/sca/ScoreCardComponent.vue.d.ts +45 -0
- package/dist/sca/ScoreCardDeserialize.d.ts +5 -0
- package/dist/sca/ScoreCardEditor.vue.d.ts +24 -0
- package/dist/sca/ScoreCardModelInitializer.d.ts +8 -0
- package/dist/sca/ScoreCardSettingDialog.vue.d.ts +15 -0
- package/dist/sca/ScoreCardWebEditor.d.ts +1 -0
- package/dist/sca/component/ScoreCardTable.d.ts +81 -0
- package/dist/sca/component/ScoreCardTableCrossHeader.d.ts +11 -0
- package/dist/sca/component/ScoreCardTableHeader.d.ts +27 -0
- package/dist/sca/component/ScoreCardTableRowIndicate.d.ts +26 -0
- package/dist/sca/component/contextMenuBuilder.d.ts +3 -0
- package/dist/sca/component/edit/ScoreCardChangeEdit.d.ts +4 -0
- package/dist/sca/model/ScoreCardAttribute.d.ts +86 -0
- package/dist/sca/model/ScoreCardTableModel.d.ts +67 -0
- package/dist/sca/webview/ScoreCardDocument.d.ts +1 -1
- package/dist/sca/webview/ScoreCardEditorProvider.d.ts +1 -1
- package/dist/sync/SyncFileUitls.d.ts +1 -0
- package/dist/tst/PredictFormDialog.vue.d.ts +1 -1
- package/dist/utils.d.ts +28 -1
- package/dist/webviewFiles.d.ts +4 -0
- package/dist/webviewFilesOperator.d.ts +3 -2
- package/package.json +10 -3
- package/dist/FileSystemEventBus.d.ts +0 -6
- package/dist/components/process/Connection.d.ts +0 -122
- package/dist/components/process/Menu.d.ts +0 -12
- package/dist/components/process/MenuItemFactory.d.ts +0 -5
- package/dist/components/process/MergeGroup.d.ts +0 -12
- package/dist/components/process/OrthogonalPath.d.ts +0 -225
- package/dist/components/process/Process.d.ts +0 -111
- package/dist/components/process/ProcessNode.d.ts +0 -340
- package/dist/components/process/Tooltip.d.ts +0 -20
- package/dist/components/process/colors.d.ts +0 -2
- package/dist/dta/DecisionTableSerialize.d.ts +0 -2
- package/dist/rfl/FlowProcess.d.ts +0 -85
- package/dist/rfl/node/ActionTaskNode.d.ts +0 -22
- package/dist/rfl/node/BasicNode.d.ts +0 -8
- package/dist/rfl/node/BranchNode.d.ts +0 -48
- package/dist/rfl/node/ConnectionFactory.d.ts +0 -10
- package/dist/rfl/node/FlowConnection.d.ts +0 -52
- package/dist/rfl/node/FlowProcessNode.d.ts +0 -128
- package/dist/rfl/node/ForkNode.d.ts +0 -54
- package/dist/rfl/node/JoinNode.d.ts +0 -54
- package/dist/rfl/node/ProcessNodeFactory.d.ts +0 -41
- package/dist/rfl/node/RuleTaskNode.d.ts +0 -76
- package/dist/rfl/node/StartTaskNode.d.ts +0 -74
- package/dist/rfl/node/StopTaskNode.d.ts +0 -84
- package/dist/rfl/node/SubflowTaskNode.d.ts +0 -70
- package/dist/rfl/node/TaskNode.d.ts +0 -42
package/dist/EventBus.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export declare const THE_FILE_DATA = "THE_FILE_DATA";
|
|
|
7
7
|
export declare const EDITOR_READY = "EDITOR_READY";
|
|
8
8
|
export declare const DO_SAVE_FILE = "DO_SAVE_FILE";
|
|
9
9
|
export declare const OPEN_FILE = "OPEN_FILE";
|
|
10
|
+
export declare const ALL_UUID_PARSED = "ALL_UUID_PARSED";
|
|
10
11
|
export declare const OPEN_EXTERNAL_DEFINITION = "OPEN_EXTERNAL_DEFINITION";
|
|
11
12
|
export declare const POSITION_TARGET_DEFINITION = "POSITION_TARGET_DEFINITION";
|
|
12
13
|
export declare const SHOW_QUICK_TEST_DIALOG = "SHOW_QUICK_TEST_DIALOG";
|
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
export declare const DEPLOY_OUTPUT_FOLDER = ".deploy";
|
|
2
2
|
export declare const PACKAGE_CONFIG_FILE = "config.xml";
|
|
3
3
|
export declare class FileDeployPackageBuilder {
|
|
4
|
-
private static outputChannel;
|
|
5
4
|
private workspaceFolderPath;
|
|
6
5
|
private testFileOutputFolderPath;
|
|
7
6
|
constructor();
|
|
8
|
-
private static getOutputChannel;
|
|
9
7
|
private static log;
|
|
10
8
|
/**
|
|
11
9
|
* 监听webview中的请求测试文件的事件
|
package/dist/FileUtils.d.ts
CHANGED
|
@@ -9,9 +9,9 @@ export declare class FileUtils {
|
|
|
9
9
|
private static pathsInfo;
|
|
10
10
|
private static allPathsInfo;
|
|
11
11
|
private static ruleFileContentCache;
|
|
12
|
+
private static ruleFileLastedModifyCache;
|
|
12
13
|
private static uuidMap;
|
|
13
14
|
static getTargetFolder(): string;
|
|
14
|
-
private static getIrlFiles;
|
|
15
15
|
static getFileInfo(uuid: string): FileInfo | null;
|
|
16
16
|
static replaceStringInTextDocument(uri: vscode.Uri, searchString: string, replaceString: string): Promise<void>;
|
|
17
17
|
static validateFileName(filename: string): string | null;
|
|
@@ -20,17 +20,11 @@ export declare class FileUtils {
|
|
|
20
20
|
private static findFileInfo;
|
|
21
21
|
static parseFlowFileInfos(xmlData: any): Promise<FileInfo[]>;
|
|
22
22
|
private static parseFlowPackageFileInfos;
|
|
23
|
-
static
|
|
24
|
-
filesInfo:
|
|
25
|
-
pathsInfo:
|
|
26
|
-
allPathsInfo:
|
|
27
|
-
}>;
|
|
28
|
-
/**
|
|
29
|
-
* 检查文件是否为规则文件
|
|
30
|
-
* @param filename 文件名
|
|
31
|
-
* @returns 是否为规则文件
|
|
32
|
-
*/
|
|
33
|
-
static isRuleFile(filename: string): boolean;
|
|
23
|
+
static initProjectFilesInfo(clearCache?: boolean, callback?: () => void): Promise<{
|
|
24
|
+
filesInfo: never[];
|
|
25
|
+
pathsInfo: never[];
|
|
26
|
+
allPathsInfo: never[];
|
|
27
|
+
} | undefined>;
|
|
34
28
|
static supportCompile(filename: string): boolean;
|
|
35
29
|
/**
|
|
36
30
|
* 获取编译后的文件fullpath
|
|
@@ -43,16 +37,19 @@ export declare class FileUtils {
|
|
|
43
37
|
static isUDMFile(filename: string): boolean;
|
|
44
38
|
static isXmlFile(filename: string): boolean;
|
|
45
39
|
static getFilePath(fullPath: string): string;
|
|
40
|
+
private static ignoredPaths;
|
|
46
41
|
private static readDirectory;
|
|
47
42
|
static getFileUuid(filename: string, filepath: string, dir: boolean): Promise<string | null>;
|
|
48
|
-
|
|
43
|
+
static getTypeByFileName(filename: string): string;
|
|
49
44
|
static getFileType(filename: string): string;
|
|
50
|
-
private static
|
|
45
|
+
private static parseXml;
|
|
46
|
+
private static parseJson;
|
|
51
47
|
static parseUUID(filePath: string, key?: string): Promise<string>;
|
|
52
48
|
static parseTxtUUID(filePath: string, prefix: string): Promise<string>;
|
|
53
49
|
private static loadProjectProperties;
|
|
54
50
|
static getProjectUuid: () => Promise<string>;
|
|
55
51
|
static getProjectSourceFolder: () => Promise<string>;
|
|
52
|
+
static getProjectRulesetProperties: () => Promise<Record<string, string>>;
|
|
56
53
|
/**
|
|
57
54
|
* 替换决策流中RuleNode下的包名,替换FileInfo中的path和name
|
|
58
55
|
* @param oldPath 旧包名
|
|
@@ -62,7 +59,7 @@ export declare class FileUtils {
|
|
|
62
59
|
private static doRefactorPackageName;
|
|
63
60
|
private static replacePackageName;
|
|
64
61
|
private static escapeRegExp;
|
|
65
|
-
static getCachedFileContent(
|
|
62
|
+
static getCachedFileContent(uri: vscode.Uri): string | null;
|
|
66
63
|
static clearFileContentCache(): void;
|
|
67
64
|
static getFilesInfo(): {
|
|
68
65
|
filesInfo: FileInfo[];
|
|
@@ -117,16 +114,14 @@ export declare class FileUtils {
|
|
|
117
114
|
static doRemoveFileInfo(fileInfo: FileInfo): void;
|
|
118
115
|
static updateFileUuid(filePath: string, oldUuid: string, newUuid: string): void;
|
|
119
116
|
private static doUpdateFileUuidByPath;
|
|
120
|
-
static updateFileContentCache(
|
|
117
|
+
static updateFileContentCache(uri: vscode.Uri, content: string): void;
|
|
121
118
|
static writeFileWithCache(uri: vscode.Uri, content: string | Uint8Array): Promise<void>;
|
|
122
|
-
static checkCacheConsistency(filePath: string): Promise<boolean>;
|
|
123
|
-
static validateAndUpdateCache(filePath: string): Promise<boolean>;
|
|
124
|
-
static validateAndBatchUpdateCache(filePaths: string[]): Promise<{
|
|
125
|
-
updated: number;
|
|
126
|
-
failed: number;
|
|
127
|
-
}>;
|
|
128
119
|
static uriPathToFilePath(uri: vscode.Uri): string;
|
|
129
120
|
static getFileInfoFullPath(path: string): string;
|
|
121
|
+
static createRulePackageFile(uri: vscode.Uri, context: vscode.ExtensionContext): Promise<void>;
|
|
122
|
+
static changeRulePackageFile(uri: vscode.Uri, context: vscode.ExtensionContext): Promise<void>;
|
|
123
|
+
static createMissingRulePackages(context: vscode.ExtensionContext): Promise<void>;
|
|
124
|
+
private static checkAndCreateRulePackagesForDirectory;
|
|
130
125
|
static updateFilesInfo: (context: vscode.ExtensionContext) => Promise<void>;
|
|
131
126
|
}
|
|
132
127
|
export { FileInfo };
|
|
@@ -3,6 +3,7 @@ import * as vscode from "vscode";
|
|
|
3
3
|
* 预定义的输出通道类型
|
|
4
4
|
*/
|
|
5
5
|
export declare enum OutputChannelType {
|
|
6
|
+
INIT = "UDM Init",
|
|
6
7
|
REFACTOR = "UDM Refactor",
|
|
7
8
|
OPERATIONS = "UDM Operations",
|
|
8
9
|
SYNC = "UDM Sync",
|
|
@@ -12,16 +13,40 @@ export declare enum OutputChannelType {
|
|
|
12
13
|
/**
|
|
13
14
|
* 全局单例的 OutputChannel 管理类
|
|
14
15
|
* 用于统一管理所有操作的日志输出
|
|
15
|
-
*
|
|
16
|
+
* 支持多个独立的输出通道,同时将日志写入 .vscode/.udm-logs 目录
|
|
16
17
|
*/
|
|
17
18
|
export declare class OutputChannelManager {
|
|
18
19
|
private static instance;
|
|
19
20
|
private channels;
|
|
21
|
+
private logStreams;
|
|
22
|
+
private logDir;
|
|
23
|
+
private todayDate;
|
|
20
24
|
private constructor();
|
|
21
25
|
/**
|
|
22
26
|
* 获取单例实例
|
|
23
27
|
*/
|
|
24
28
|
static getInstance(): OutputChannelManager;
|
|
29
|
+
/**
|
|
30
|
+
* 获取日志目录路径
|
|
31
|
+
*/
|
|
32
|
+
private getLogDir;
|
|
33
|
+
/**
|
|
34
|
+
* 获取今天的日期字符串,格式:YYYY-MM-DD
|
|
35
|
+
*/
|
|
36
|
+
private getTodayDateString;
|
|
37
|
+
/**
|
|
38
|
+
* 获取指定通道的日志文件路径(包含日期)
|
|
39
|
+
*/
|
|
40
|
+
private getLogFilePath;
|
|
41
|
+
/**
|
|
42
|
+
* 获取指定通道的日志写入流
|
|
43
|
+
* 跨天时自动切换到新的日志文件
|
|
44
|
+
*/
|
|
45
|
+
private getLogStream;
|
|
46
|
+
/**
|
|
47
|
+
* 写入日志文件
|
|
48
|
+
*/
|
|
49
|
+
private writeToLogFile;
|
|
25
50
|
/**
|
|
26
51
|
* 获取指定名称的 OutputChannel 实例
|
|
27
52
|
* 如果不存在则创建
|
|
@@ -39,17 +64,23 @@ export declare class OutputChannelManager {
|
|
|
39
64
|
* @param preserveFocus 是否保持当前焦点
|
|
40
65
|
*/
|
|
41
66
|
show(channelName?: string | OutputChannelType, preserveFocus?: boolean): void;
|
|
67
|
+
/**
|
|
68
|
+
* 初始化日志管理器(创建目录、清理过期日志)
|
|
69
|
+
* 应在插件 activate 时调用
|
|
70
|
+
* @param daysToKeep 保留天数,默认3天
|
|
71
|
+
*/
|
|
72
|
+
initialize(daysToKeep?: number): void;
|
|
73
|
+
/**
|
|
74
|
+
* 清理超过指定天数的旧日志文件
|
|
75
|
+
* @param daysToKeep 保留天数
|
|
76
|
+
*/
|
|
77
|
+
cleanupOldLogs(daysToKeep?: number): void;
|
|
42
78
|
/**
|
|
43
79
|
* 在指定通道添加一行日志
|
|
44
80
|
* @param message 日志消息
|
|
45
81
|
* @param channelName 通道名称或类型,默认为 OPERATIONS
|
|
46
82
|
*/
|
|
47
83
|
appendLine(message: string, channelName?: string | OutputChannelType): void;
|
|
48
|
-
/**
|
|
49
|
-
* 在指定通道添加分隔线
|
|
50
|
-
* @param channelName 通道名称或类型,默认为 OPERATIONS
|
|
51
|
-
*/
|
|
52
|
-
appendSeparator(channelName?: string | OutputChannelType): void;
|
|
53
84
|
/**
|
|
54
85
|
* 在指定通道添加带时间戳的日志
|
|
55
86
|
* @param message 日志消息
|
|
@@ -21,9 +21,15 @@ export declare const requestOutputDataFromClient: (fileUuid: string, base64ZipTe
|
|
|
21
21
|
}>;
|
|
22
22
|
export declare const requestQuickTestOutputDataFromClient: (fileUuid: string, base64ZipTestFileContent: string, authToken: string, serverUrl: string) => Promise<{
|
|
23
23
|
error: any;
|
|
24
|
+
stackTrace: any;
|
|
24
25
|
data?: undefined;
|
|
25
26
|
} | {
|
|
26
27
|
data: any;
|
|
27
28
|
error?: undefined;
|
|
29
|
+
stackTrace?: undefined;
|
|
30
|
+
} | {
|
|
31
|
+
error: string;
|
|
32
|
+
stackTrace?: undefined;
|
|
33
|
+
data?: undefined;
|
|
28
34
|
}>;
|
|
29
35
|
export declare const sendBase64FileToServlet: (fileUuid: string, fileContentBase64: string, authToken: string) => Promise<Response>;
|
|
@@ -7,3 +7,12 @@ public class CommonValue
|
|
|
7
7
|
public static final readonly boolean trueValue;
|
|
8
8
|
public static final readonly boolean falseValue;
|
|
9
9
|
}
|
|
10
|
+
public class Week {
|
|
11
|
+
public static final readonly udm.Week monday;
|
|
12
|
+
public static final readonly udm.Week tuesday;
|
|
13
|
+
public static final readonly udm.Week wednesday;
|
|
14
|
+
public static final readonly udm.Week thursday;
|
|
15
|
+
public static final readonly udm.Week friday;
|
|
16
|
+
public static final readonly udm.Week saturday;
|
|
17
|
+
public static final readonly udm.Week sunday;
|
|
18
|
+
}
|
|
@@ -3,4 +3,14 @@ uuid = 58436cbb-2f14-44f4-9b07-8809dd2f078d
|
|
|
3
3
|
udm.CommonValue#concept.label =_CommonValue
|
|
4
4
|
udm.CommonValue.currentRuleName#instance.label = 此规则的名称
|
|
5
5
|
udm.CommonValue.trueValue#instance.label = 成立
|
|
6
|
-
udm.CommonValue.falseValue#instance.label = 不成立
|
|
6
|
+
udm.CommonValue.falseValue#instance.label = 不成立
|
|
7
|
+
|
|
8
|
+
#udm.Week
|
|
9
|
+
udm.Week#concept.label=星期
|
|
10
|
+
udm.Week.monday#instance.label = 星期一
|
|
11
|
+
udm.Week.tuesday#instance.label = 星期二
|
|
12
|
+
udm.Week.wednesday#instance.label = 星期三
|
|
13
|
+
udm.Week.thursday#instance.label = 星期四
|
|
14
|
+
udm.Week.friday#instance.label = 星期五
|
|
15
|
+
udm.Week.saturday#instance.label = 星期六
|
|
16
|
+
udm.Week.sunday#instance.label = 星期日
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Vocabulary Properties
|
|
2
|
+
uuid = f82f7dfa-322b-4b54-afa9-04da036a78fa
|
|
3
|
+
|
|
4
|
+
# udm.Scorecard
|
|
5
|
+
udm.Scorecard#concept.label=_Scorecard
|
|
6
|
+
udm.Scorecard.name#phrase.navigation={this} 的名称
|
|
7
|
+
udm.Scorecard.finalScore#phrase.navigation={this} 的总分
|
|
8
|
+
udm.Scorecard.reasons#phrase.navigation={this} 的返回原因列表
|
|
9
|
+
|
|
10
|
+
|
|
@@ -99,6 +99,7 @@ public class CompareUtils
|
|
|
99
99
|
public static boolean dateEquals(java.util.Date arg1,java.util.Date arg2);
|
|
100
100
|
public static boolean yearEquals(java.util.Date arg1,int arg2);
|
|
101
101
|
public static boolean monthEquals(java.util.Date arg1,int arg2);
|
|
102
|
+
public static boolean weekEquals(java.util.Date arg1,udm.Week arg2);
|
|
102
103
|
public static boolean dateLess(java.util.Date arg1,java.util.Date arg2);
|
|
103
104
|
public static boolean dateMore(java.util.Date arg1,java.util.Date arg2);
|
|
104
105
|
public static boolean dateEqualsLess(java.util.Date arg1,java.util.Date arg2);
|
|
@@ -161,6 +161,7 @@ udm.CompareUtils.atLeastThenInWithCondition(int,java.lang.Class,java.lang.Object
|
|
|
161
161
|
udm.CompareUtils.dateEquals(java.util.Date,java.util.Date)#phrase.navigation = {0}的简单日期等于{1}
|
|
162
162
|
udm.CompareUtils.yearEquals(java.util.Date,int)#phrase.navigation = {0}的年份等于{1}年
|
|
163
163
|
udm.CompareUtils.monthEquals(java.util.Date,int)#phrase.navigation = {0}的月份等于{1}
|
|
164
|
+
udm.CompareUtils.weekEquals(java.util.Date,udm.Week)#phrase.navigation = {0}的周日等于{1}
|
|
164
165
|
udm.CompareUtils.dateMore(java.util.Date,java.util.Date)#phrase.navigation = {0}晚于{1}
|
|
165
166
|
udm.CompareUtils.dateLess(java.util.Date,java.util.Date)#phrase.navigation = {0}早于{1}
|
|
166
167
|
udm.CompareUtils.dateEqualsMore(java.util.Date,java.util.Date)#phrase.navigation = {0}等于或晚于{1}
|