123456789101112131415161718192021222324252627 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsPriceFormula
- {
- public int SiteId { get; set; }
- public int PriceTypeId { get; set; }
- public int FacilityTypeId { get; set; }
- public int FormulaId { get; set; }
- public int FacilityCode { get; set; }
- public string UseYN { get; set; }
-
- public virtual BemsFormula BemsFormula { get; set; }
- public virtual BemsPriceType BemsPriceType { get; set; }
- }
- }
|