123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace FMSAdmin.Entities
- {
- public partial class FmsInvestmentCost
- {
- [Key]
- public int SiteId { get; set; }
- [Key]
- public int InsvestmentCostId { get; set; }
- [Required]
- [StringLength(32)]
- public string Name { get; set; }
- [StringLength(1024)]
- public string Comment { get; set; }
- public double InsvestmentCost { get; set; }
- }
- }
|