You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
755 B

  1. using Learun.Application.IM;
  2. using System.Data.Entity.ModelConfiguration;
  3. namespace Learun.Application.Mapping
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架
  7. /// Copyright (c) 2013-2018 上海力软信息技术有限公司
  8. /// 创建人:力软-框架开发组
  9. /// 日 期:2018.05.31
  10. /// 描 述:即时通讯消息内容
  11. /// </summary>
  12. public class IMMsgMap : EntityTypeConfiguration<IMMsgEntity>
  13. {
  14. public IMMsgMap()
  15. {
  16. #region 表、主键
  17. //表
  18. this.ToTable("LR_IM_MSG");
  19. //主键
  20. this.HasKey(t => t.F_MsgId);
  21. #endregion
  22. #region 配置关系
  23. #endregion
  24. }
  25. }
  26. }