1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // 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.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMISOnline.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<CF_StudentContact>
- {
- 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(10);
- this.Property(t => t.Address).HasColumnName("Address").HasMaxLength(200);
- this.Property(t => t.WorkUnit).HasColumnName("WorkUnit").HasMaxLength(200);
- this.Property(t => t.HomeAddress).HasColumnName("HomeAddress").HasMaxLength(200);
- 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");
- }
- }
- }
|