纽威
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.

52 lines
1.6 KiB

3 years ago
3 years ago
3 years ago
3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace ICSSoft.Entity
  6. {
  7. public class ICSOtherOutDoc
  8. {
  9. public string ID { get; set; }//ID
  10. public string User { get; set; }//用户
  11. public DateTime MTime { get; set; }//时间
  12. public string WorkPoint { get; set; }
  13. public bool UpdateStock { get; set; }
  14. public bool UpdateTodoQuantity { get; set; }
  15. }
  16. public class ICSOtherOutCreateDoc
  17. {
  18. public string DepCode;
  19. public string WHCode;
  20. public string User;
  21. public string WorkPoint;
  22. public bool UpdateStock;
  23. //public string SourceCode;
  24. public DateTime MTime;
  25. public List<ICSOtherOutCreateDocs> details = new List<ICSOtherOutCreateDocs>();
  26. }
  27. public class ICSOtherOutCreateDocs
  28. {
  29. public string Sequence;
  30. public string InvCode;
  31. public decimal Quantity;
  32. public decimal Amount;
  33. //public string SourceDetailID;
  34. public string ProjectCode;//项目号
  35. public string Version;//版本
  36. public string Brand;//厂牌
  37. public string BatchCode;//批次号
  38. public string cFree1;//自由项1
  39. public string cFree2;//自由项2
  40. public string cFree3;//自由项3
  41. public string cFree4;//自由项4
  42. public string cFree5;//自由项5
  43. public string cFree6;//自由项6
  44. public string cFree7;//自由项7
  45. public string cFree8;//自由项8
  46. public string cFree9;//自由项9
  47. public string cFree10;//自由项10
  48. }
  49. }