25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

88 lines
2.5 KiB

  1. using Learun.Application.TwoDevelopment.EducationalAdministration;
  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-08-08 17:21
  10. /// 描 述:新生信息管理
  11. /// </summary>
  12. public class StuInfoFreshMap : EntityTypeConfiguration<StuInfoFreshEntity>
  13. {
  14. public StuInfoFreshMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("STUINFOFRESH");
  19. //主键
  20. this.HasKey(t => t.ID);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }
  27. //using Learun.Application.TwoDevelopment.EducationalAdministration;
  28. //using System.Data.Entity.ModelConfiguration;
  29. namespace Learun.Application.Mapping
  30. {
  31. /// <summary>
  32. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  33. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  34. /// 创 建:超级管理员
  35. /// 日 期:2019-08-09 16:31
  36. /// 描 述:新生信息管理
  37. /// </summary>
  38. public class StuInfoFreshEmergePeopleMap : EntityTypeConfiguration<StuInfoFreshEmergePeopleEntity>
  39. {
  40. public StuInfoFreshEmergePeopleMap()
  41. {
  42. #region 表、主键
  43. //表
  44. this.ToTable("STUINFOFRESHEMERGEPEOPLE");
  45. //主键
  46. this.HasKey(t => t.Id);
  47. #endregion
  48. #region 配置关系
  49. #endregion
  50. }
  51. }
  52. }
  53. //using Learun.Application.TwoDevelopment.EducationalAdministration;
  54. //using System.Data.Entity.ModelConfiguration;
  55. namespace Learun.Application.Mapping
  56. {
  57. /// <summary>
  58. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  59. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  60. /// 创 建:超级管理员
  61. /// 日 期:2019-08-09 16:31
  62. /// 描 述:新生信息管理
  63. /// </summary>
  64. public class StuInfoFreshFamilyMap : EntityTypeConfiguration<StuInfoFreshFamilyEntity>
  65. {
  66. public StuInfoFreshFamilyMap()
  67. {
  68. #region 表、主键
  69. //表
  70. this.ToTable("STUINFOFRESHFAMILY");
  71. //主键
  72. this.HasKey(t => t.Id);
  73. #endregion
  74. #region 配置关系
  75. #endregion
  76. }
  77. }
  78. }