1234567891011121314151617181920212223242526272829303132333435363738 |
- //------------------------------------------------------------------------------
- // <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 ER_ScoreRule_Mapping : EntityTypeConfiguration<ER_ScoreRule>
- {
- public ER_ScoreRule_Mapping()
- {
- this.HasKey(t => t.ScoreRuleID);
- this.ToTable("ER_ScoreRule");
- this.Property(t => t.ScoreRuleID).HasColumnName("ScoreRuleID");
- this.Property(t => t.LoginMax).HasColumnName("LoginMax");
- this.Property(t => t.LoginEachTime).HasColumnName("LoginEachTime");
- this.Property(t => t.CoursewareMax).HasColumnName("CoursewareMax");
- this.Property(t => t.CoursewareContinueMinite).HasColumnName("CoursewareContinueMinite");
- this.Property(t => t.CoursewareEachTime).HasColumnName("CoursewareEachTime");
- this.Property(t => t.HomeworkMax).HasColumnName("HomeworkMax");
- this.Property(t => t.TeacherScore).HasColumnName("TeacherScore");
- }
- }
- }
|