//------------------------------------------------------------------------------ // // 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 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 EM_FTPVideo_Mapping : EntityTypeConfiguration { public EM_FTPVideo_Mapping() { this.HasKey(t => t.FTPVideoID); this.ToTable("EM_FTPVideo"); this.Property(t => t.FTPVideoID).HasColumnName("FTPVideoID"); this.Property(t => t.Name).HasColumnName("Name").HasMaxLength(500); this.Property(t => t.FTPPath).HasColumnName("FTPPath").IsUnicode(false).HasMaxLength(2048); this.Property(t => t.FTPUrl).HasColumnName("FTPUrl").IsUnicode(false).HasMaxLength(2048); this.Property(t => t.M3u8Url).HasColumnName("M3u8Url").IsUnicode(false).HasMaxLength(2048); this.Property(t => t.M3u8Path).HasColumnName("M3u8Path").IsUnicode(false).HasMaxLength(2048); this.Property(t => t.ModifyTime).HasColumnName("ModifyTime"); this.Property(t => t.CreateTime).HasColumnName("CreateTime"); this.Property(t => t.Status).HasColumnName("Status"); } } }