Comm_OrgInfo_Mapping.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace EMIS.Entities.HRServices
  10. {
  11. #pragma warning disable 1573
  12. using System;
  13. using System.Collections.Generic;
  14. using System.ComponentModel.DataAnnotations;
  15. using System.Data.Common;
  16. using System.Data.Entity;
  17. using System.Data.Entity.ModelConfiguration;
  18. using System.Data.Entity.Infrastructure;
  19. using System.ComponentModel.DataAnnotations.Schema;
  20. internal partial class Comm_OrgInfo_Mapping : EntityTypeConfiguration<Comm_OrgInfo>
  21. {
  22. public Comm_OrgInfo_Mapping()
  23. {
  24. this.HasKey(t => t.dpid);
  25. this.ToTable("Comm_OrgInfo");
  26. this.Property(t => t.dpid).HasColumnName("dpid").IsRequired().HasMaxLength(55);
  27. this.Property(t => t.parentdpid).HasColumnName("parentdpid").HasMaxLength(55);
  28. this.Property(t => t.dpcode).HasColumnName("dpcode").HasMaxLength(155);
  29. this.Property(t => t.dplv).HasColumnName("dplv");
  30. this.Property(t => t.dpname).HasColumnName("dpname").HasMaxLength(55);
  31. this.Property(t => t.dpfullname).HasColumnName("dpfullname").HasMaxLength(155);
  32. this.Property(t => t.dpdesc).HasColumnName("dpdesc").HasMaxLength(55);
  33. this.Property(t => t.isshow).HasColumnName("isshow");
  34. this.Property(t => t.status).HasColumnName("status").IsUnicode(false).IsFixedLength().HasMaxLength(1);
  35. this.Property(t => t.orderNo).HasColumnName("orderNo").HasMaxLength(155);
  36. this.Property(t => t.isTmpDP).HasColumnName("isTmpDP").IsRequired().IsUnicode(false).IsFixedLength().HasMaxLength(1);
  37. this.Property(t => t.createdt).HasColumnName("createdt");
  38. this.Property(t => t.updatedt).HasColumnName("updatedt");
  39. this.Property(t => t.AllowDist).HasColumnName("AllowDist");
  40. this.Property(t => t.OrderNum).HasColumnName("OrderNum").IsUnicode(false).HasMaxLength(50);
  41. }
  42. }
  43. }