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.
 
 
 
 
 
 

26 lines
603 B

  1. using Learun.Application.OA;
  2. using Learun.Application.OA.Schedule;
  3. using System.Data.Entity.ModelConfiguration;
  4. namespace Learun.Application.Mapping
  5. {
  6. /// <summary>
  7. /// 失物招领
  8. /// </summary>
  9. public class LostArticleInfoMap : EntityTypeConfiguration<LostArticleInfoEntity>
  10. {
  11. public LostArticleInfoMap()
  12. {
  13. #region 表、主键
  14. //表
  15. this.ToTable("LOSTARTICLEINFO");
  16. //主键
  17. this.HasKey(t => t.F_LId);
  18. #endregion
  19. #region 配置关系
  20. #endregion
  21. }
  22. }
  23. }