appsettingsModel.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WK_KLI_LAPS_COMMONTOOL_Service.Models
  6. {
  7. public class Appsettings
  8. {
  9. public string Secret { get; set; }
  10. public string ConnectionString { get; set; }
  11. public string ConnectionStringSchedule { get; set; }
  12. public string emailhost { get; set; }
  13. public string emailusername { get; set; }
  14. public string emailpassword { get; set; }
  15. public int forgotpassword { get; set; }
  16. public int accessapprove { get; set; }
  17. public int accessreject { get; set; }
  18. public int useradd { get; set; }
  19. public int accessrequest { get; set; }
  20. public string emailbodylinkforgotpassword { get; set; }
  21. public string emailbodylinkname { get; set; }
  22. public string ocrstagename { get;set; }
  23. }
  24. public class Fields
  25. {
  26. public long transid { set; get; }
  27. public string fields { set; get; }
  28. public string option { set; get; }
  29. public string comment { set; get; }
  30. public string cflag { set; get; }
  31. public string userid { set; get; }
  32. public long batchid { get; set; }
  33. }
  34. public class insertcomments
  35. {
  36. public long transid { set; get; }
  37. public string comment { set; get; }
  38. public string doption { set; get; }
  39. public string tostage { set; get; }
  40. public long jobid { set; get; }
  41. public long lotid { set; get; }
  42. public string filename { set; get; }
  43. public string lotstatus { set; get; }
  44. public long userid { set; get; }
  45. public string status { set; get; }
  46. public string comments { set; get; }
  47. public long jobworkflowid { set; get; }
  48. public long tranid { set; get; }
  49. }
  50. public class lottraninfo
  51. {
  52. public string p_tranid { set; get; }
  53. public string p_userid { set; get; }
  54. public string p_option { set; get; }
  55. public string p_XmlName { set; get; }
  56. public string p_holdreason { set; get; }
  57. public string basexmlUpdate { set; get; }
  58. public string stageorder { set; get; }
  59. }
  60. public class appdetails
  61. {
  62. public Int32? jobworkflowid { get; set; }
  63. public Int32? lotid { get; set; }
  64. public Int32? jobid { get; set; }
  65. public Int32? merged_lot { get; set; }
  66. public Int32? batchid { get; set; }
  67. public Int32? nextstage { get; set; }
  68. public Int32? movebackstage { get; set; }
  69. public string stagetype { get; set; }
  70. public Int32? process_without_file { get; set; }
  71. public string checkin_app { get; set; }
  72. public string inprocessapp { get; set; }
  73. public string checkout_app { get; set; }
  74. public string exe_path { get; set; }
  75. public string checkin_appwather { get; set; }
  76. public string inprocessappwatcher { get; set; }
  77. public string checkout_appwatcher { get; set; }
  78. public string ipaexepath { get; set; }
  79. public string coaexepath { get; set; }
  80. }
  81. public class JobWorkflow_
  82. {
  83. public string jobworkflowid { set; get; }
  84. public string jobid { set; get; }
  85. public string lotid { set; get; }
  86. public string batchid { set; get; }
  87. public string lotstatus { set; get; }
  88. }
  89. public class StageData
  90. {
  91. public string CURRENT { set; get; }
  92. public string NEXT { set; get; }
  93. public string PARALLEL { set; get; }
  94. public string MOVEBACKYES { set; get; }
  95. public string MOVEBACKNO { set; get; }
  96. }
  97. public class transout
  98. {
  99. public string p_tranid { get; set; }
  100. }
  101. public class lot_tran_info
  102. {
  103. public string p_tranid { set; get; }
  104. public string p_userid { set; get; }
  105. public string p_option { set; get; }
  106. public string p_XmlName { set; get; }
  107. public string p_holdreason { set; get; }
  108. public string basexmlUpdate { set; get; }
  109. public string stageorder { set; get; }
  110. }
  111. public class jobmetafields
  112. {
  113. public string name { get; set; }
  114. public string type { get; set; }
  115. public string label { get; set; }
  116. public string workflowdid { get; set; }
  117. public string value { get; set; }
  118. public string status { get; set; }
  119. }
  120. public class FileDetails
  121. {
  122. public string FileName { get; set; }
  123. public string FilePath { get; set; }
  124. }
  125. public class filedownload
  126. {
  127. public int jobid { get; set; }
  128. public string path { get; set; }
  129. public string type { get; set; }
  130. public int tranid { get; set; }
  131. public int pdid { get; set; }
  132. public string jobtitle { get; set; }
  133. public string option { get; set; }
  134. }
  135. }