Class1.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using Prism.Mvvm;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace LogoForceTestApp.Modules.MainModule.Models
  8. {
  9. public class LocalFile : BindableBase
  10. {
  11. public string FileNum { get; set; }
  12. public string Edition { get; set; }
  13. public string Date { get; set; }
  14. public string Type { get; set; }
  15. public string People { get; set; }
  16. public string Name { get; set; }
  17. public string Process { get; set; }
  18. public string WorkTime { get; set; }
  19. }
  20. public class LocalFile2 : BindableBase
  21. {
  22. public string Num { get; set; }
  23. public string MaterialNum { get; set; }
  24. public string MaterialName { get; set; }
  25. public string Count { get; set; }
  26. public string Unit { get; set; }
  27. }
  28. public class LocalFile3 : BindableBase
  29. {
  30. public string Equipment { get; set; }
  31. public string Before { get; set; }
  32. public string Inn { get; set; }
  33. public string After { get; set; }
  34. public string LookOut { get; set; }
  35. }
  36. public class GenaralFile
  37. {
  38. public string ProductName { get; set; }
  39. public List<LocalFile> FileInfos { get; set; }
  40. public List<LocalFile2> FileInfos2 { get; set; }
  41. public List<LocalFile3> FileInfos3 { get; set; }
  42. }
  43. }