You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
538 B

3 days ago
  1. using NFine.Domain._03_Entity.SystemManage;
  2. using NFine.Domain.Entity.SystemManage;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Data.Entity.ModelConfiguration;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace NFine.Mapping.SystemManage
  10. {
  11. public class OrganizeByVendorMap : EntityTypeConfiguration<OrganizeByVendorEntity>
  12. {
  13. public OrganizeByVendorMap()
  14. {
  15. this.ToTable("Sys_SRM_OrganizeByVendor");
  16. this.HasKey(t => t.F_Id);
  17. }
  18. }
  19. }