//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace EMIS.Entities
{
#pragma warning disable 1573
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Data.Common;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration;
using System.Data.Entity.Infrastructure;
using System.ComponentModel.DataAnnotations.Schema;
internal partial class CF_StaffProfile_Mapping : EntityTypeConfiguration
{
public CF_StaffProfile_Mapping()
{
this.HasKey(t => t.UserID);
this.ToTable("CF_StaffProfile");
this.Property(t => t.UserID).HasColumnName("UserID");
this.Property(t => t.UsedName).HasColumnName("UsedName").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Nationality).HasColumnName("Nationality").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.Place).HasColumnName("Place").HasMaxLength(100);
this.Property(t => t.Email).HasColumnName("Email").HasMaxLength(50);
this.Property(t => t.ZIPCode).HasColumnName("ZIPCode").IsUnicode(false).HasMaxLength(10);
this.Property(t => t.WeChatNum).HasColumnName("WeChatNum").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.QQ).HasColumnName("QQ").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Telephone).HasColumnName("Telephone").HasMaxLength(50);
this.Property(t => t.OfficeTelephone).HasColumnName("OfficeTelephone").HasMaxLength(50);
this.Property(t => t.HousePhone).HasColumnName("HousePhone").HasMaxLength(50);
this.Property(t => t.Mobile).HasColumnName("Mobile").HasMaxLength(50);
this.Property(t => t.Speciality).HasColumnName("Speciality").HasMaxLength(200);
this.Property(t => t.HealthStateID).HasColumnName("HealthStateID");
this.Property(t => t.ReligionID).HasColumnName("ReligionID");
this.Property(t => t.Account).HasColumnName("Account").IsUnicode(false).HasMaxLength(100);
this.Property(t => t.Residence).HasColumnName("Residence").HasMaxLength(200);
this.Property(t => t.HomeAddress).HasColumnName("HomeAddress").HasMaxLength(200);
this.Property(t => t.Address).HasColumnName("Address").HasMaxLength(200);
this.Property(t => t.NowAddress).HasColumnName("NowAddress").HasMaxLength(200);
this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
this.Property(t => t.CreateTime).HasColumnName("CreateTime");
this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
this.HasRequired(t => t.CF_Staff).WithOptional(t => t.CF_StaffProfile);
}
}
}