dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
23 lines (22 loc) • 445 B
TypeScript
export declare enum ImportStyle {
Normal = "NORMAL",
Must = "MUST",
Fill = "FILL",
Skip = "SKIP"
}
export interface ImportParam {
After: string;
Before: string;
DB: string;
Fields: ImportField[];
Table: string;
Where: string;
NullIden: string;
}
export interface ImportField {
Name: string;
Alias: string;
Remark: string;
Style: ImportStyle;
Value: string;
}