lotModel.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. namespace WK_KLI_LAPS_Service.Models.Configuration
  3. {
  4. public class lotmasterModel
  5. {
  6. public Int64 lotid { get; set; }
  7. public Int32 jobid { get; set; }
  8. public string title { get; set; }
  9. public Int32? sequence { get; set; }
  10. public string instructions { get; set; }
  11. public string filename { get; set; }
  12. public Int32? priority { get; set; }
  13. public string foldername { get; set; }
  14. public Int64? totalunits { get; set; }
  15. public string lotstatus { get; set; }
  16. public Int32? pickedby { get; set; }
  17. public Int32? withvendor { get; set; }
  18. public string lotkey { get; set; }
  19. public Int32? createdby { get; set; }
  20. public DateTime? createdon { get; set; }
  21. public Int32? updatedby { get; set; }
  22. public DateTime? updatedon { get; set; }
  23. public string xmlsource { get; set; }
  24. public Int64? tathours { get; set; }
  25. public Int32? chaptertypeid { get; set; }
  26. public Int32? active { get; set; }
  27. public Int64? transactionid { get; set; }
  28. public string option { get; set; }
  29. public string serverpath { get; set; }
  30. public string username { get; set; }
  31. public string password { get; set; }
  32. public string domain { get; set; }
  33. public string docid { get; set; }
  34. public Int64? productionworkflowid { get; set; }
  35. public Int32? ismovetoproduction { get; set; }
  36. public long? jobworkflowid { set; get; }
  37. public string lotmastermetafields { get; set; }
  38. public long pwdid { get; set; }
  39. public string uniquemailid { get; set; }
  40. public string parentmailid { get; set; }
  41. public string projectid { get; set; }
  42. public string url { get; set; }
  43. public string biddate { get; set; }
  44. public string companyname { get; set; }
  45. public string type { get; set; }
  46. public string ranking { get; set; }
  47. public string frequency { get; set; }
  48. public string city { get; set; }
  49. public string state { get; set; }
  50. public string followupdate { get; set; }
  51. public string projectname { get; set; }
  52. public string bidnumber { get; set; }
  53. }
  54. public class lotfilesModel
  55. {
  56. public Int64 lotfileid { get; set; }
  57. public Int64? lotid { get; set; }
  58. public string filename { get; set; }
  59. public Int32? active { get; set; }
  60. }
  61. public class chaptertypemastersModel
  62. {
  63. public Int64 chaptertypeid { get; set; }
  64. public string chaptertype { get; set; }
  65. public int? chpsequence { get; set; }
  66. public int? active { get; set; }
  67. public int? createdby { get; set; }
  68. public DateTime? createddate { get; set; }
  69. public int? updatedby { get; set; }
  70. public DateTime? updateddate { get; set; }
  71. }
  72. public class lotcomment
  73. {
  74. public long transid { set; get; }
  75. public string comment { set; get; }
  76. public string doption { set; get; }
  77. public string tostage { set; get; }
  78. public long jobid { set; get; }
  79. public long lotid { set; get; }
  80. public string filename { set; get; }
  81. public string lotstatus { set; get; }
  82. public long userid { set; get; }
  83. public string status { set; get; }
  84. public string comments { set; get; }
  85. public long jobworkflowid { set; get; }
  86. public long tranid { set; get; }
  87. }
  88. }