insert-sensor.ts 235 B

123456789
  1. /* tslint:disable */
  2. /* eslint-disable */
  3. import { InsertPhenomenon } from './insert-phenomenon';
  4. export interface InsertSensor {
  5. phenomenon?: InsertPhenomenon;
  6. sensor_id?: number;
  7. sensor_name?: string;
  8. sensor_type?: string;
  9. }