Blame view

src/models/cross-section.ts 446 Bytes
14db241c   Administrator   add cross section
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  export class CrossSection {
      id: number;
      roadId: number;
      regionId: number;
      stateCommonid: number;
      locationLeft: number;
      locationRight: number;
      direction: string;
      surfaceTypeId: number;
      lengthSection: number;
      lengthSurface: number;
      distanceEdge: number;
      width: number;
      angle: number;
      tubeAvailability: number;
      safetyAvailability: number;
      yearBuild: number;
      yearRepair: number;
  
  }