add frontend reference search lookup
This commit is contained in:
parent
f744573f02
commit
477e4e498e
|
@ -78,6 +78,6 @@ reference-type:
|
|||
- code: tag
|
||||
dataType: Text
|
||||
- code: uri
|
||||
dataType: text
|
||||
dataType: Text
|
||||
taxonomy:
|
||||
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