DFTTCx4ShangHaiMap.cs 718 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-24 13:01
  10. /// 描 述:地方彩-上海天天彩选4
  11. /// </summary>
  12. public class DFTTCx4ShangHaiMap : EntityTypeConfiguration<DFTTCx4ShangHaiEntity>
  13. {
  14. public DFTTCx4ShangHaiMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("DF_TTCx4_ShangHai");
  19. //主键
  20. this.HasKey(t => t.ID);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }