华恒Mes鼎捷代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.1 KiB

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Frame.Data.Entity
  6. {
  7. public class FormICSNCRDataUIModel
  8. {
  9. public string NCRNumber { get; set; }
  10. public ICSNCRDoc Entity_ICSNCRDoc { get; set; }
  11. public ICSNCRDocPrevention Entity_Prevention { get; set; }
  12. public List<NCRDocPreventionProcessModel> Entity_PreventionProcesslist { get; set; }
  13. public ICSNCRDocRectify Entity_Rectify { get; set; }
  14. public List<NCRDocRectifyProcessModel> Entity_RectifyProcesslist { get; set; }
  15. public List<ICSNCRDocPicture> Entity_Picturelist { get; set; }
  16. public List<ICSNCRDocRectifyBonusPenalty> Entity_RectifyBonusPenaltylist { get; set; }
  17. public List<string> PreventionProNamelist { get; set; }
  18. public List<string> RectifyProNamelist { get; set; }
  19. }
  20. public class NCRDocRectifyProcessModel
  21. {
  22. public string RectifyUser { get; set; }
  23. public ICSNCRDocRectifyProcess Entity_RectifyProcess { get; set; }
  24. }
  25. public class NCRDocPreventionProcessModel
  26. {
  27. public string PreventionUser { get; set; }
  28. public ICSNCRDocPreventionProcess Entity_PreventionProcess { get; set; }
  29. }
  30. public class NCRProcessBackModel
  31. {
  32. public string Department { get; set; }
  33. public string BackContect { get; set; }
  34. public DateTime BackTime { get; set; }
  35. }
  36. public class NCRCPIRModel
  37. {
  38. public string SecDocNO { get; set; }
  39. public string ErrorType { get; set; }
  40. public string ItemCode { get; set; }
  41. public string ItemName { get; set; }
  42. public string SrcDocInfo { get; set; }
  43. public decimal? Qty { get; set; }
  44. public string ContentDesc { get; set; }
  45. public string Furnace { get; set; }
  46. public string Point { get; set; }
  47. public string ProjectCode { get; set; }
  48. public DateTime? SecDocCreateTime { get; set; }
  49. public DateTime? RequirDate { get; set; }
  50. }
  51. public class NCR_SupplyModel
  52. {
  53. public string SupplyCode { get; set; }
  54. public string SupplyName{ get; set; }
  55. public string PONo { get; set; }
  56. public string POLineNo { get; set; }
  57. }
  58. public class NCR_UPloadOAModel
  59. {
  60. public string LotNo { get; set; }
  61. public string Type { get; set; }
  62. public string Qty { get; set; }
  63. public string NCRDocNo { get; set; }
  64. public string OPCode { get; set; }
  65. public string OPName { get; set; }
  66. public string itemcode { get; set; }
  67. public string itemname { get; set; }
  68. public string itemstd { get; set; }
  69. public string codetype { get; set; }
  70. public string contentdesc { get; set; }
  71. public string codenum { get; set; }
  72. public decimal? okqty { get; set; }
  73. public decimal? ngqty { get; set; }
  74. public decimal? fxqty { get; set; }
  75. public decimal? jjssqty { get; set; }
  76. public string OAStatus { get; set; }
  77. public string Desc { get; set; }
  78. }
  79. }