dbweb-common
Version:
用`yarn add dbweb-common`安装,不要忘记修改`angular.json`里的 `architect\build\options\assets`,加上
21 lines (20 loc) • 409 B
TypeScript
export interface UpdateParam {
DB: string;
TableName: string;
Fields: IField[];
AdditionSet: string;
AdditionWhere: string;
BeforeSQL: string;
}
export interface IField {
selected?: boolean;
Name: string;
Label: string;
Tooltip: string;
Freeentry: boolean;
Must: boolean;
List: {
Value: string;
Label: string;
}[];
}