forked from jappel/leistungsbilanz-ts
All first todos completed
This commit is contained in:
parent
65819900b1
commit
18a4fdd893
29 changed files with 1263 additions and 160 deletions
|
|
@ -10,6 +10,8 @@ export interface ConsumerWithCalculatedValues {
|
|||
projectId: string;
|
||||
distributionBoardId?: string | null;
|
||||
circuitListId?: string | null;
|
||||
projectDeviceId?: string | null;
|
||||
isLinkedToDevice?: boolean;
|
||||
roomId?: string | null;
|
||||
roomNumber?: string;
|
||||
roomName?: string;
|
||||
|
|
@ -73,6 +75,7 @@ export interface RoomDto {
|
|||
export interface GlobalDeviceDto {
|
||||
id: string;
|
||||
name: string;
|
||||
displayName: string;
|
||||
category: string | null;
|
||||
quantity: number;
|
||||
installedPowerPerUnitKw: number;
|
||||
|
|
@ -87,6 +90,7 @@ export interface ProjectDeviceDto {
|
|||
id: string;
|
||||
projectId: string;
|
||||
name: string;
|
||||
displayName: string;
|
||||
category: string | null;
|
||||
quantity: number;
|
||||
installedPowerPerUnitKw: number;
|
||||
|
|
@ -101,6 +105,8 @@ export interface CreateConsumerInput {
|
|||
projectId: string;
|
||||
distributionBoardId?: string;
|
||||
circuitListId?: string;
|
||||
projectDeviceId?: string;
|
||||
isLinkedToDevice?: boolean;
|
||||
roomId?: string;
|
||||
circuitNumber?: string;
|
||||
description?: string;
|
||||
|
|
@ -139,6 +145,7 @@ export interface CreateRoomInput {
|
|||
|
||||
export interface CreateGlobalDeviceInput {
|
||||
name: string;
|
||||
displayName: string;
|
||||
category?: string;
|
||||
quantity: number;
|
||||
installedPowerPerUnitKw: number;
|
||||
|
|
@ -151,6 +158,7 @@ export interface CreateGlobalDeviceInput {
|
|||
|
||||
export interface CreateProjectDeviceInput {
|
||||
name: string;
|
||||
displayName: string;
|
||||
category?: string;
|
||||
quantity: number;
|
||||
installedPowerPerUnitKw: number;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue