DFHC1GuangDongMap.cs 710 B

1234567891011121314151617181920212223242526272829
  1. using Lottomat.Application.Entity.LotteryNumberManage;
  2. using System.Data.Entity.ModelConfiguration;
  3. namespace Lottomat.Application.Mapping.LotteryNumberManage
  4. {
  5. /// <summary>
  6. /// 版 本
  7. /// Copyright (c) 2016-2017
  8. /// 创 建:超级管理员
  9. /// 日 期:2017-11-22 10:35
  10. /// 描 述:地方彩-广东好彩1
  11. /// </summary>
  12. public class DFHC1GuangDongMap : EntityTypeConfiguration<DFHC1GuangDongEntity>
  13. {
  14. public DFHC1GuangDongMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("DF_HC1_GuangDong");
  19. //主键
  20. this.HasKey(t => t.ID);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }