Basic ERD diagram of PV Database
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

TblDebtorNote.cs 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // This code was generated from a template.
  4. //
  5. // Manual changes to this file may cause unexpected behavior in your application.
  6. // Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9. namespace ERD
  10. {
  11. using System;
  12. using System.Collections.Generic;
  13. public partial class TblDebtorNote
  14. {
  15. public int OID { get; set; }
  16. public Nullable<int> TblDebtor { get; set; }
  17. public Nullable<int> MessageCode { get; set; }
  18. public string Comments { get; set; }
  19. public Nullable<System.DateTime> DateCreated { get; set; }
  20. public string CreatedBy { get; set; }
  21. public Nullable<int> OptimisticLockField { get; set; }
  22. public Nullable<int> GCRecord { get; set; }
  23. public Nullable<int> MessageNo { get; set; }
  24. public string Category { get; set; }
  25. public string Company { get; set; }
  26. public string Account { get; set; }
  27. public string MsgType { get; set; }
  28. public string MessageCat { get; set; }
  29. public Nullable<int> MessageId { get; set; }
  30. public Nullable<System.DateTime> MessageDate { get; set; }
  31. public string MessageText { get; set; }
  32. public Nullable<decimal> Amount { get; set; }
  33. public Nullable<System.DateTime> ActionDate { get; set; }
  34. public string User { get; set; }
  35. public string LetterIndicator { get; set; }
  36. public string Posted { get; set; }
  37. public string Deleted { get; set; }
  38. public virtual TblDebtor TblDebtor1 { get; set; }
  39. public virtual TblMessageCode TblMessageCode { get; set; }
  40. }
  41. }