Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Purchase_EduMap.cs 796 B

1234567891011121314151617181920212223242526272829
  1. using Learun.Application.TwoDevelopment.LogisticsManagement;
  2. using System.Data.Entity.ModelConfiguration;
  3. namespace Learun.Application.Mapping
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS V7.0.6 力软敏捷开发框架
  7. /// Copyright (c) 2013-2020 力软信息技术(苏州)有限公司
  8. /// 创 建:超级管理员
  9. /// 日 期:2023-06-25 18:33
  10. /// 描 述:申请类
  11. /// </summary>
  12. public class Purchase_EduMap : EntityTypeConfiguration<Purchase_EduEntity>
  13. {
  14. public Purchase_EduMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("PURCHASE_EDU");
  19. //主键
  20. this.HasKey(t => t.Id);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }