BemsNoticePriceContractDataType.cs 630 B

123456789101112131415161718
  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 BemsNoticePriceContractDataType {
  7. [Display(Name = "에너지 구분")]
  8. public short FuelTypeId { get; set; }
  9. [Display(Name = "계약 타입")]
  10. public short ContractType { get; set; }
  11. [Display(Name = "데이터 유형")]
  12. public short DataId { get; set; }
  13. [Display(Name = "계약명"), Required]
  14. [StringLength(50)]
  15. public string Name { get; set; }
  16. }
  17. }