FmsWorkCodeProgress.cs 704 B

1234567891011121314151617181920212223242526
  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 FmsWorkCodeProgress
  8. {
  9. public FmsWorkCodeProgress()
  10. {
  11. FmsWorkRequest = new HashSet<FmsWorkRequest>();
  12. }
  13. [Key]
  14. public int WorkProgressId { get; set; }
  15. [Required]
  16. [StringLength(24)]
  17. public string Name { get; set; }
  18. [StringLength(512)]
  19. public string Description { get; set; }
  20. [InverseProperty("WorkProgress")]
  21. public virtual ICollection<FmsWorkRequest> FmsWorkRequest { get; set; }
  22. }
  23. }