123456789101112131415161718192021222324252627282930313233 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsFormula
- {
- public BemsFormula()
- {
- this.BemsFormulaParameter = new HashSet<BemsFormulaParameter>();
- this.BemsPriceFormula = new HashSet<BemsPriceFormula>();
- }
-
- public int SiteId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FacilityCode { get; set; }
- public int FormulaId { get; set; }
- public string Formula { get; set; }
-
- public virtual BemsFormulaBase BemsFormulaBase { get; set; }
- public virtual ICollection<BemsFormulaParameter> BemsFormulaParameter { get; set; }
- public virtual ICollection<BemsPriceFormula> BemsPriceFormula { get; set; }
- }
- }
|