1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //------------------------------------------------------------------------------
- // <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 TblDebtorNote
- {
- public int OID { get; set; }
- public Nullable<int> TblDebtor { get; set; }
- public Nullable<int> MessageCode { get; set; }
- public string Comments { get; set; }
- public Nullable<System.DateTime> DateCreated { get; set; }
- public string CreatedBy { get; set; }
- public Nullable<int> OptimisticLockField { get; set; }
- public Nullable<int> GCRecord { get; set; }
- public Nullable<int> MessageNo { get; set; }
- public string Category { get; set; }
- public string Company { get; set; }
- public string Account { get; set; }
- public string MsgType { get; set; }
- public string MessageCat { get; set; }
- public Nullable<int> MessageId { get; set; }
- public Nullable<System.DateTime> MessageDate { get; set; }
- public string MessageText { get; set; }
- public Nullable<decimal> Amount { get; set; }
- public Nullable<System.DateTime> ActionDate { get; set; }
- public string User { get; set; }
- public string LetterIndicator { get; set; }
- public string Posted { get; set; }
- public string Deleted { get; set; }
-
- public virtual TblDebtor TblDebtor1 { get; set; }
- public virtual TblMessageCode TblMessageCode { get; set; }
- }
- }
|