1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- //------------------------------------------------------------------------------
- // <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>
- /// TP_TeacherTypePaymentFormula
- /// </summary>
- public partial class TP_TeacherTypePaymentFormula
- {
- /// <summary>
- /// TeacherTypePaymentFormulaID
- /// </summary>
- public System.Guid TeacherTypePaymentFormulaID { get; set; }
- /// <summary>
- /// PaymentFormulaID
- /// </summary>
- public Nullable<System.Guid> PaymentFormulaID { get; set; }
- /// <summary>
- /// TeacherType
- /// </summary>
- public Nullable<int> TeacherType { 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>
- /// TP_PaymentFormula
- /// </summary>
- public virtual TP_PaymentFormula TP_PaymentFormula { get; set; }
- }
- }
|