AW-803 Add CodeListItem + service.
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good
This commit is contained in:
28
projects/common/src/fm/models/code.list.item.ts
Normal file
28
projects/common/src/fm/models/code.list.item.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
export interface ICodeListItem {
|
||||
codelist: string;
|
||||
code: string;
|
||||
codeGroup?: string;
|
||||
unit?: string;
|
||||
description?: string;
|
||||
validFrom?: Date;
|
||||
validTo?: Date;
|
||||
created?: Date;
|
||||
updated?: Date;
|
||||
data?:any
|
||||
}
|
||||
|
||||
export class CodeListItem implements ICodeListItem {
|
||||
public codelist: string;
|
||||
public code: string;
|
||||
public codeGroup?: string;
|
||||
public unit?: string;
|
||||
public description:string;
|
||||
public validFrom?: Date;
|
||||
public validTo?: Date;
|
||||
public created?: Date;
|
||||
public updated?: Date;
|
||||
public data?:any;
|
||||
|
||||
constructor() {
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user