app/@overflow/model/meta/MetaSensorItemKey.ts

16 lines
408 B
TypeScript
Raw Normal View History

2018-08-26 15:15:10 +00:00
import { MetaSensorItem } from './MetaSensorItem';
import { MetaCrawler } from './MetaCrawler';
import { MetaSensorItemUnit } from './MetaSensorItemUnit';
export interface MetaSensorItemKey {
id?: number;
key?: string;
name?: string;
froms?: string;
option?: string;
metaSensorItem?: MetaSensorItem;
metaCrawler?: MetaCrawler;
metaSensorItemUnit?: MetaSensorItemUnit;
createDate?: Date;
}