FmsInvestmentCost.cs 567 B

123456789101112131415161718192021
  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 FmsInvestmentCost
  8. {
  9. [Key]
  10. public int SiteId { get; set; }
  11. [Key]
  12. public int InsvestmentCostId { get; set; }
  13. [Required]
  14. [StringLength(32)]
  15. public string Name { get; set; }
  16. [StringLength(1024)]
  17. public string Comment { get; set; }
  18. public double InsvestmentCost { get; set; }
  19. }
  20. }