123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //------------------------------------------------------------------------------
- // <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 ERD
- {
- using System;
- using System.Collections.Generic;
-
- public partial class TblSACRRABatch
- {
- public TblSACRRABatch()
- {
- this.TblSACRRADatas = new HashSet<TblSACRRAData>();
- this.TblSACRRAFiles = new HashSet<TblSACRRAFile>();
- this.TblSACRRAFilesToEncrypts = new HashSet<TblSACRRAFilesToEncrypt>();
- }
-
- public int OID { get; set; }
- public Nullable<int> BatchNumber { get; set; }
- public string CreatedBy { get; set; }
- public Nullable<System.DateTime> DateCreated { get; set; }
- public Nullable<bool> TestRun { get; set; }
- public Nullable<int> Settings { get; set; }
- public Nullable<int> Type { get; set; }
- public Nullable<System.DateTime> MonthEndDate { get; set; }
- public string Header { get; set; }
- public string Trailer { get; set; }
- public string Step1 { get; set; }
- public string Step2 { get; set; }
- public string Step3 { get; set; }
- public string Step4 { get; set; }
- public string DeleteReason { get; set; }
- public Nullable<bool> IsProcessRunning { get; set; }
- public Nullable<int> OptimisticLockField { get; set; }
- public Nullable<int> GCRecord { get; set; }
-
- public virtual TblSACRRASetting TblSACRRASetting { get; set; }
- public virtual ICollection<TblSACRRAData> TblSACRRADatas { get; set; }
- public virtual ICollection<TblSACRRAFile> TblSACRRAFiles { get; set; }
- public virtual ICollection<TblSACRRAFilesToEncrypt> TblSACRRAFilesToEncrypts { get; set; }
- }
- }
|