using Lottomat.Application.Entity.PublicInfoManage; using System.Data.Entity.ModelConfiguration; namespace Lottomat.Application.Mapping.PublicInfoManage { /// /// 版 本 1.0 /// Copyright (c) 2016-2017 /// 创建人:赵轶 /// 日 期:2015.12.15 10:56 /// 描 述:文件夹 /// public class FileFolderMap : EntityTypeConfiguration { public FileFolderMap() { #region 表、主键 //表 this.ToTable("Base_FileFolder"); //主键 this.HasKey(t => t.FolderId); #endregion #region 配置关系 #endregion } } }