1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- namespace EMIS.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
-
-
-
- public partial class EM_EvaluationProject
- {
- public EM_EvaluationProject()
- {
- this.EM_EvaluationEnter_EM_EvaluationProject = new HashSet<EM_EvaluationEnter_EM_EvaluationProject>();
- this.EM_EvaluationStudentDetail = new HashSet<EM_EvaluationStudentDetail>();
- }
-
-
-
-
- public System.Guid EvaluationProjectID { get; set; }
-
-
-
- public Nullable<System.Guid> EvaluationTargetID { get; set; }
-
-
-
- public Nullable<int> OrderNo { get; set; }
-
-
-
- public string Code { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public Nullable<decimal> Weight { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public Nullable<int> RecordStatus { get; set; }
-
-
-
- public Nullable<System.Guid> CreateUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> CreateTime { get; set; }
-
-
-
- public Nullable<System.Guid> ModifyUserID { get; set; }
-
-
-
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
-
-
-
- public virtual HashSet<EM_EvaluationEnter_EM_EvaluationProject> EM_EvaluationEnter_EM_EvaluationProject { get; set; }
-
-
-
- public virtual EM_EvaluationTarget EM_EvaluationTarget { get; set; }
-
-
-
- public virtual HashSet<EM_EvaluationStudentDetail> EM_EvaluationStudentDetail { get; set; }
- }
- }
|