Bladeren bron

处理失物招领新增异常,缺少相关map

西昌缴费二期
zhangli 2 jaren geleden
bovenliggende
commit
caaec72a3d
2 gewijzigde bestanden met toevoegingen van 26 en 0 verwijderingen
  1. +25
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_OA/LostArticleInfoMap.cs
  2. +1
    -0
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj

+ 25
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/LR_OA/LostArticleInfoMap.cs Bestand weergeven

@@ -0,0 +1,25 @@
using Learun.Application.OA;
using Learun.Application.OA.Schedule;
using System.Data.Entity.ModelConfiguration;

namespace Learun.Application.Mapping
{
/// <summary>
/// 失物招领
/// </summary>
public class LostArticleInfoMap : EntityTypeConfiguration<LostArticleInfoEntity>
{
public LostArticleInfoMap()
{
#region 表、主键
//表
this.ToTable("LOSTARTICLEINFO");
//主键
this.HasKey(t => t.F_LId);
#endregion

#region 配置关系
#endregion
}
}
}

+ 1
- 0
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Mapping/Learun.Application.Mapping.csproj Bestand weergeven

@@ -160,6 +160,7 @@
<Compile Include="LR_OA\FileFolderMap.cs" />
<Compile Include="LR_OA\FileInfoMap.cs" />
<Compile Include="LR_OA\JQueryGanttMap.cs" />
<Compile Include="LR_OA\LostArticleInfoMap.cs" />
<Compile Include="LR_OA\ScheduleMap.cs" />
<Compile Include="LR_OA\NewsMap.cs" />
<Compile Include="LR_OA\StampMap.cs" />


Laden…
Annuleren
Opslaan