12345678910111213141516171819202122232425262728 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsAnalysisType
- {
- public BemsAnalysisType()
- {
- this.BemsMonitoringPointToAnlaysisType = new HashSet<BemsMonitoringPointToAnlaysisType>();
- }
-
- public int SiteId { get; set; }
- public int AnalysisType { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<BemsMonitoringPointToAnlaysisType> BemsMonitoringPointToAnlaysisType { get; set; }
- }
- }
|