//------------------------------------------------------------------------------
//
// 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_StudentContact_Mapping : EntityTypeConfiguration
{
public CF_StudentContact_Mapping()
{
this.HasKey(t => t.UserID);
this.ToTable("CF_StudentContact");
this.Property(t => t.UserID).HasColumnName("UserID");
this.Property(t => t.Email).HasColumnName("Email").IsUnicode(false).HasMaxLength(100);
this.Property(t => t.QQ).HasColumnName("QQ").IsUnicode(false).HasMaxLength(40);
this.Property(t => t.Mobile).HasColumnName("Mobile").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.Telephone).HasColumnName("Telephone").IsUnicode(false).HasMaxLength(50);
this.Property(t => t.MicroMsgNo).HasColumnName("MicroMsgNo").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Zipcode).HasColumnName("Zipcode").IsUnicode(false).HasMaxLength(20);
this.Property(t => t.Address).HasColumnName("Address");
this.Property(t => t.WorkUnit).HasColumnName("WorkUnit").HasMaxLength(200);
this.Property(t => t.HomeAddress).HasColumnName("HomeAddress");
this.Property(t => t.Recipient).HasColumnName("Recipient").HasMaxLength(20);
this.Property(t => t.Dormitory).HasColumnName("Dormitory").HasMaxLength(100);
this.Property(t => t.RecordStatus).HasColumnName("RecordStatus");
this.Property(t => t.CreateTime).HasColumnName("CreateTime");
this.Property(t => t.CreateUserID).HasColumnName("CreateUserID");
this.Property(t => t.ModifyUserID).HasColumnName("ModifyUserID");
this.Property(t => t.ModifyTime).HasColumnName("ModifyTime");
this.HasRequired(t => t.CF_Student).WithOptional(t => t.CF_StudentContact);
}
}
}