CmServiceEnergyCalcMonth.cs 514 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities
  6. {
  7. public partial class CmServiceEnergyCalcMonth
  8. {
  9. [Key]
  10. public int SiteId { get; set; }
  11. [Key]
  12. [Column("calDate", TypeName = "datetime")]
  13. public DateTime CalDate { get; set; }
  14. [Key]
  15. public short ServiceTypeId { get; set; }
  16. public double? Value { get; set; }
  17. }
  18. }