BemsNoticePriceDetail.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace FMSAdmin.Entities {
  6. public partial class BemsNoticePriceDetail {
  7. //고지단가 상세금액
  8. [Display(Name = "현장 고유번호"), Key]
  9. public int SiteId { get; set; }
  10. [Display(Name = "에너지 구분"), Key]
  11. public short FuelTypeId { get; set; }
  12. [Display(Name = "시행일자"), Key]
  13. public DateTime ApplyDate { get; set; }
  14. [Display(Name = "계악타입"), Key]
  15. public short ContractType { get; set; }
  16. [Display(Name = "시간")]
  17. public short DataId { get; set; }
  18. [Display(Name = "금액")]
  19. public double? P01 { get; set; }
  20. [Display(Name = "금액")]
  21. public double? P02 { get; set; }
  22. [Display(Name = "금액")]
  23. public double? P03 { get; set; }
  24. [Display(Name = "금액")]
  25. public double? P04 { get; set; }
  26. [Display(Name = "금액")]
  27. public double? P05 { get; set; }
  28. [Display(Name = "금액")]
  29. public double? P06 { get; set; }
  30. [Display(Name = "금액")]
  31. public double? P07 { get; set; }
  32. [Display(Name = "금액")]
  33. public double? P08 { get; set; }
  34. [Display(Name = "금액")]
  35. public double? P09 { get; set; }
  36. [Display(Name = "금액")]
  37. public double? P10 { get; set; }
  38. [Display(Name = "금액")]
  39. public double? P11 { get; set; }
  40. [Display(Name = "금액")]
  41. public double? P12 { get; set; }
  42. [ForeignKey("SiteId,FuelTypeId,ApplyDate,ContractType")]
  43. public virtual BemsNoticePriceBase BemsNoticePriceBase { get; set; }
  44. }
  45. }