parent
fdb9295488
commit
6b1336fc1a
@ -0,0 +1,3 @@
|
||||
export class Control {
|
||||
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
export class SelectControl {
|
||||
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
export class TextControl {
|
||||
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
export enum ControlType {
|
||||
TEXT = 'text',
|
||||
SELECT = 'select'
|
||||
}
|
||||
@ -0,0 +1,15 @@
|
||||
import { ControlType } from '../dataset/enum/Control'
|
||||
|
||||
export interface IValueSet {
|
||||
value: string;
|
||||
code: string;
|
||||
}
|
||||
|
||||
export interface IControl {
|
||||
type: ControlType;
|
||||
value: string;
|
||||
conceptId: string;
|
||||
prefix?: string;
|
||||
postfix?: string;
|
||||
valueSets?: IValueSet[]
|
||||
}
|
||||
Loading…
Reference in new issue