12345678910111213141516171819202122232425262728293031 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsNoticePriceContractType
- {
- public BemsNoticePriceContractType()
- {
- this.BemsNoticePriceBase = new HashSet<BemsNoticePriceBase>();
- this.CmFacility = new HashSet<CmFacility>();
- }
-
- public short FuelTypeId { get; set; }
- public short ContractType { get; set; }
- public string Name { get; set; }
-
- public virtual ICollection<BemsNoticePriceBase> BemsNoticePriceBase { get; set; }
- public virtual BemsFuelType BemsFuelType { get; set; }
- public virtual ICollection<CmFacility> CmFacility { get; set; }
- }
- }
|