12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- //------------------------------------------------------------------------------
- // <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>
- /// EC_StudentCharge
- /// </summary>
- public partial class EC_StudentCharge
- {
- public EC_StudentCharge()
- {
- this.EC_ChargeDelay = new HashSet<EC_ChargeDelay>();
- this.EC_StudentChargePayment = new HashSet<EC_StudentChargePayment>();
- }
-
- /// <summary>
- /// StudentChargeID
- /// </summary>
- public System.Guid StudentChargeID { get; set; }
- /// <summary>
- /// UserID
- /// </summary>
- public Nullable<System.Guid> UserID { get; set; }
- /// <summary>
- /// ChargeProjectID
- /// </summary>
- public Nullable<System.Guid> ChargeProjectID { get; set; }
- /// <summary>
- /// ChargeYear
- /// </summary>
- public Nullable<int> ChargeYear { get; set; }
- /// <summary>
- /// Amount
- /// </summary>
- public Nullable<decimal> Amount { get; set; }
- /// <summary>
- /// ActualAmount
- /// </summary>
- public Nullable<decimal> ActualAmount { get; set; }
- /// <summary>
- /// ChargeTag
- /// </summary>
- public Nullable<int> ChargeTag { 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>
- /// EC_ChargeDelay
- /// </summary>
- public virtual HashSet<EC_ChargeDelay> EC_ChargeDelay { get; set; }
- /// <summary>
- /// EC_ChargeProject
- /// </summary>
- public virtual EC_ChargeProject EC_ChargeProject { get; set; }
- /// <summary>
- /// EC_StudentChargePayment
- /// </summary>
- public virtual HashSet<EC_StudentChargePayment> EC_StudentChargePayment { get; set; }
- }
- }
|