1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- //------------------------------------------------------------------------------
- // <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 EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// EM_EvaluationStudent
- /// </summary>
- public partial class EM_EvaluationStudent
- {
- public EM_EvaluationStudent()
- {
- this.EM_EvaluationStudentDetail = new HashSet<EM_EvaluationStudentDetail>();
- }
-
- /// <summary>
- /// EvaluationStudentID
- /// </summary>
- public System.Guid EvaluationStudentID { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public Nullable<System.Guid> UserID { get; set; }
- /// <summary>
- /// EvaluationStudentSettingID
- /// </summary>
- public Nullable<System.Guid> EvaluationStudentSettingID { get; set; }
- /// <summary>
- /// Numbered
- /// </summary>
- public Nullable<int> Numbered { get; set; }
- /// <summary>
- /// IsValidity
- /// </summary>
- public Nullable<bool> IsValidity { get; set; }
- /// <summary>
- /// TotalScore
- /// </summary>
- public Nullable<decimal> TotalScore { get; set; }
- /// <summary>
- /// Advice
- /// </summary>
- public string Advice { get; set; }
- /// <summary>
- /// Remark
- /// </summary>
- public string Remark { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// CF_Student
- /// </summary>
- public virtual CF_Student CF_Student { get; set; }
- /// <summary>
- /// EM_EvaluationStudentSetting
- /// </summary>
- public virtual EM_EvaluationStudentSetting EM_EvaluationStudentSetting { get; set; }
- /// <summary>
- /// EM_EvaluationStudentDetail
- /// </summary>
- public virtual HashSet<EM_EvaluationStudentDetail> EM_EvaluationStudentDetail { get; set; }
- }
- }
|