25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

30 satır
803 B

  1. using Learun.Application.TwoDevelopment.AssetManagementSystem;
  2. using System.Data.Entity.ModelConfiguration;
  3. namespace Learun.Application.Mapping
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  7. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  8. /// 创 建:超级管理员
  9. /// 日 期:2019-03-15 16:57
  10. /// 描 述:供应商管理
  11. /// </summary>
  12. public class Ass_SupplierMap : EntityTypeConfiguration<Ass_SupplierEntity>
  13. {
  14. public Ass_SupplierMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("ASS_SUPPLIER");
  19. //主键
  20. this.HasKey(t => t.SId);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }