using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace FMSAdmin.Entities { public partial class CmServiceEnergyCalcDay { [Key] public int SiteId { get; set; } [Key] [Column("calDate", TypeName = "datetime")] public DateTime CalDate { get; set; } [Key] public short ServiceTypeId { get; set; } public double? Value { get; set; } } }