add frontend reference search lookup
This commit is contained in:
parent
f744573f02
commit
477e4e498e
|
@ -78,6 +78,6 @@ reference-type:
|
||||||
- code: tag
|
- code: tag
|
||||||
dataType: Text
|
dataType: Text
|
||||||
- code: uri
|
- code: uri
|
||||||
dataType: text
|
dataType: Text
|
||||||
taxonomy:
|
taxonomy:
|
||||||
fields:
|
fields:
|
|
@ -0,0 +1,12 @@
|
||||||
|
import { Lookup } from "@common/model/lookup";
|
||||||
|
import { ReferenceType } from "../common/enum/reference-type";
|
||||||
|
|
||||||
|
export class ReferenceSearchLookup extends Lookup{
|
||||||
|
like: string;
|
||||||
|
type: ReferenceType;
|
||||||
|
key: string;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue