1234567891011121314151617181920212223242526272829303132 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsNoticePriceBase
- {
- public BemsNoticePriceBase()
- {
- this.BemsNoticePriceDetail = new HashSet<BemsNoticePriceDetail>();
- }
-
- public int SiteId { get; set; }
- public short FuelTypeId { get; set; }
- public System.DateTime ApplyDate { get; set; }
- public short ContractType { get; set; }
- public Nullable<int> PrimaryPrice { get; set; }
- public Nullable<int> SecondaryPrice { get; set; }
-
- public virtual BemsNoticePriceContractType BemsNoticePriceContractType { get; set; }
- public virtual ICollection<BemsNoticePriceDetail> BemsNoticePriceDetail { get; set; }
- }
- }
|