123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsChartInfo
- {
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int ChartId { get; set; }
- public string LAxTitle { get; set; }
- public string RAxTitle { get; set; }
- public string XAxTitle { get; set; }
- public Nullable<int> XSFmId { get; set; }
- public string XSType { get; set; }
- public int LSFmId1 { get; set; }
- public string LSName1 { get; set; }
- public string LSType1 { get; set; }
- public Nullable<int> LSFmId2 { get; set; }
- public string LSName2 { get; set; }
- public string LSType2 { get; set; }
- public Nullable<int> LSFmId3 { get; set; }
- public string LSName3 { get; set; }
- public string LSType3 { get; set; }
- public Nullable<int> LSFmId4 { get; set; }
- public string LSName4 { get; set; }
- public string LSType4 { get; set; }
- public Nullable<int> RSFmId1 { get; set; }
- public string RSName1 { get; set; }
- public string RSType1 { get; set; }
- public Nullable<int> RSFmId2 { get; set; }
- public string RSName2 { get; set; }
- public string RSType2 { get; set; }
- public Nullable<int> RSFmId3 { get; set; }
- public string RSName3 { get; set; }
- public string RSType3 { get; set; }
- public Nullable<int> RSFmId4 { get; set; }
- public string RSName4 { get; set; }
- public string RSType4 { get; set; }
- public string Title { get; set; }
- public Nullable<bool> UseX { get; set; }
- public Nullable<bool> UseLAxMinMax { get; set; }
- public Nullable<bool> UseRAxMinMax { get; set; }
- public Nullable<bool> UseXAxMinMax { get; set; }
- public Nullable<double> LAxMin { get; set; }
- public Nullable<double> LAxMax { get; set; }
- public Nullable<double> RAxMin { get; set; }
- public Nullable<double> RAxMax { get; set; }
- public Nullable<double> XAxMin { get; set; }
- public Nullable<double> XAxMax { get; set; }
- public string Palette { get; set; }
- public Nullable<bool> UseChart { get; set; }
- public bool UseLCTLine { get; set; }
- public string LCTLineTitle { get; set; }
- public Nullable<double> LCTLineValue { get; set; }
- public bool UseRCTLine { get; set; }
- public string RCTLineTitle { get; set; }
- public Nullable<double> RCTLineValue { get; set; }
-
- public virtual BemsFacilityType BemsFacilityType { get; set; }
- public virtual CmSite CmSite { get; set; }
- }
- }
|