BemsFormulaTable.cs 877 B

12345678910111213141516171819202122232425
  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 BemsFormulaTable {
  7. public BemsFormulaTable() {
  8. BemsFormulaTableValue = new HashSet<BemsFormulaTableValue>();
  9. }
  10. //성능분석식 테이블
  11. [Display(Name = "수식 테이블 고유번호"), Key]
  12. public int TableId { get; set; }
  13. [Display(Name = "테이블 명"), Required]
  14. [StringLength(20)]
  15. public string FunctionName { get; set; }
  16. [Display(Name = "상세 설명"), Required]
  17. [StringLength(80)]
  18. public string Description { get; set; }
  19. [InverseProperty("Table")]
  20. public virtual ICollection<BemsFormulaTableValue> BemsFormulaTableValue { get; set; }
  21. }
  22. }