DF26x5GuangDongMap.cs 714 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-21 16:34
  10. /// 描 述:地方彩-广东26选5
  11. /// </summary>
  12. public class DF26x5GuangDongMap : EntityTypeConfiguration<DF26x5GuangDongEntity>
  13. {
  14. public DF26x5GuangDongMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("DF_26x5_GuangDong");
  19. //主键
  20. this.HasKey(t => t.ID);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }