123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- //------------------------------------------------------------------------------
- // <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>
- /// EX_ExaminationProject
- /// </summary>
- public partial class EX_ExaminationProject
- {
- public EX_ExaminationProject()
- {
- this.ER_CertisfierDistribute = new HashSet<ER_CertisfierDistribute>();
- this.ER_LevelSetting = new HashSet<ER_LevelSetting>();
- this.ER_ProjectScore = new HashSet<ER_ProjectScore>();
- this.EX_ExaminationBatchProject = new HashSet<EX_ExaminationBatchProject>();
- this.EX_ExaminationProjectFee = new HashSet<EX_ExaminationProjectFee>();
- this.EX_ExaminationProjectSubject = new HashSet<EX_ExaminationProjectSubject>();
- }
-
- /// <summary>
- /// ExaminationProjectID
- /// </summary>
- public System.Guid ExaminationProjectID { get; set; }
- /// <summary>
- /// ExaminationTypeID
- /// </summary>
- public Nullable<System.Guid> ExaminationTypeID { get; set; }
- /// <summary>
- /// ExaminationLevelID
- /// </summary>
- public Nullable<int> ExaminationLevelID { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// PreposeProjectID
- /// </summary>
- public Nullable<System.Guid> PreposeProjectID { get; set; }
- /// <summary>
- /// IssuedByID
- /// </summary>
- public Nullable<int> IssuedByID { 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>
- /// ER_CertisfierDistribute
- /// </summary>
- public virtual HashSet<ER_CertisfierDistribute> ER_CertisfierDistribute { get; set; }
- /// <summary>
- /// ER_LevelSetting
- /// </summary>
- public virtual HashSet<ER_LevelSetting> ER_LevelSetting { get; set; }
- /// <summary>
- /// ER_ProjectScore
- /// </summary>
- public virtual HashSet<ER_ProjectScore> ER_ProjectScore { get; set; }
- /// <summary>
- /// EX_ExaminationBatchProject
- /// </summary>
- public virtual HashSet<EX_ExaminationBatchProject> EX_ExaminationBatchProject { get; set; }
- /// <summary>
- /// EX_ExaminationProjectFee
- /// </summary>
- public virtual HashSet<EX_ExaminationProjectFee> EX_ExaminationProjectFee { get; set; }
- /// <summary>
- /// EX_ExaminationProjectSubject
- /// </summary>
- public virtual HashSet<EX_ExaminationProjectSubject> EX_ExaminationProjectSubject { get; set; }
- /// <summary>
- /// EX_ExaminationType
- /// </summary>
- public virtual EX_ExaminationType EX_ExaminationType { get; set; }
- }
- }
|