FmsWorkResultLaw.cs 733 B

123456789101112131415161718192021222324
  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 FmsWorkResultLaw
  8. {
  9. [Key]
  10. public int SiteId { get; set; }
  11. [Key]
  12. public int WorkRequestId { get; set; }
  13. [StringLength(50)]
  14. public string CertificationNo { get; set; }
  15. [Column(TypeName = "numeric(10, 0)")]
  16. public decimal? CheckCommission { get; set; }
  17. public bool? CheckResult { get; set; }
  18. [ForeignKey("SiteId,WorkRequestId")]
  19. [InverseProperty("FmsWorkResultLaw")]
  20. public virtual FmsWorkResult FmsWorkResult { get; set; }
  21. }
  22. }