12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- //------------------------------------------------------------------------------
- // <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>
- /// ER_DegreeConditionPackage
- /// </summary>
- public partial class ER_DegreeConditionPackage
- {
- public ER_DegreeConditionPackage()
- {
- this.ER_DegreeApply = new HashSet<ER_DegreeApply>();
- this.ER_DegreeCondition = new HashSet<ER_DegreeCondition>();
- }
-
- /// <summary>
- /// DegreeConditionPackageID
- /// </summary>
- public System.Guid DegreeConditionPackageID { get; set; }
- /// <summary>
- /// StudentType
- /// </summary>
- public Nullable<int> StudentType { get; set; }
- /// <summary>
- /// Title
- /// </summary>
- public string Title { get; set; }
- /// <summary>
- /// IsDefault
- /// </summary>
- public Nullable<bool> IsDefault { get; set; }
- /// <summary>
- /// RecordStatus
- /// </summary>
- public Nullable<int> RecordStatus { get; set; }
- /// <summary>
- /// CreateTime
- /// </summary>
- public Nullable<System.DateTime> CreateTime { get; set; }
- /// <summary>
- /// CreateUserID
- /// </summary>
- public Nullable<System.Guid> CreateUserID { get; set; }
- /// <summary>
- /// ModifyUserID
- /// </summary>
- public Nullable<System.Guid> ModifyUserID { get; set; }
- /// <summary>
- /// ModifyTime
- /// </summary>
- public Nullable<System.DateTime> ModifyTime { get; set; }
-
- /// <summary>
- /// ER_DegreeApply
- /// </summary>
- public virtual HashSet<ER_DegreeApply> ER_DegreeApply { get; set; }
- /// <summary>
- /// ER_DegreeCondition
- /// </summary>
- public virtual HashSet<ER_DegreeCondition> ER_DegreeCondition { get; set; }
- }
- }
|