锐腾搅拌上料功能
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.

40 lines
1.2 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 FormICSWareHouseLotInfoUIModel : ICSWareHouseLotInfo
  8. {
  9. public string ID { get; set; }
  10. public string LotNO { get; set; }
  11. public string WHGUID { get; set; }
  12. public string WHCode { get; set; }
  13. public string BinGUID { get; set; }
  14. public string BinCode { get; set; }
  15. public string INVGUID { get; set; }
  16. public string INVCode { get; set; }
  17. public decimal LotQty { get; set; }
  18. public DateTime? ReceiveDate { get; set; }
  19. public string WorkPoint { get; set; }
  20. public string MUSER { get; set; }
  21. public string MUSERName { get; set; }
  22. public DateTime? MTIME { get; set; }
  23. public string VenderLotNO { get; set; }
  24. public string EATTRIBUTE1 { get; set; }
  25. //库房
  26. public FormICSStorageUIModel storage { get; set; }
  27. //库位
  28. public FormICSStackUIModel stack { get; set; }
  29. //物料
  30. public FormICSINVENTORYUIModel item { get; set; }
  31. public FormICSITEMLotUIModel itemlot { get; set; }
  32. }
  33. }