123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- //------------------------------------------------------------------------------
- // <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_ExaminationProjectFee
- /// </summary>
- public partial class EX_ExaminationProjectFee
- {
- public EX_ExaminationProjectFee()
- {
- this.EX_ExaminationBatchProjectControl = new HashSet<EX_ExaminationBatchProjectControl>();
- this.EX_ExaminationBatchProjectPersonControl = new HashSet<EX_ExaminationBatchProjectPersonControl>();
- this.EX_ExaminationProjectFeeType = new HashSet<EX_ExaminationProjectFeeType>();
- }
-
- /// <summary>
- /// ExaminationProjectFeeID
- /// </summary>
- public System.Guid ExaminationProjectFeeID { get; set; }
- /// <summary>
- /// ExaminationProjectID
- /// </summary>
- public Nullable<System.Guid> ExaminationProjectID { get; set; }
- /// <summary>
- /// Name
- /// </summary>
- public string Name { 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>
- /// EX_ExaminationBatchProjectControl
- /// </summary>
- public virtual HashSet<EX_ExaminationBatchProjectControl> EX_ExaminationBatchProjectControl { get; set; }
- /// <summary>
- /// EX_ExaminationBatchProjectPersonControl
- /// </summary>
- public virtual HashSet<EX_ExaminationBatchProjectPersonControl> EX_ExaminationBatchProjectPersonControl { get; set; }
- /// <summary>
- /// EX_ExaminationProject
- /// </summary>
- public virtual EX_ExaminationProject EX_ExaminationProject { get; set; }
- /// <summary>
- /// EX_ExaminationProjectFeeType
- /// </summary>
- public virtual HashSet<EX_ExaminationProjectFeeType> EX_ExaminationProjectFeeType { get; set; }
- }
- }
|