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

50 lines
1.3 KiB

3 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.WMS
  7. {
  8. public class ICSWareHouseLotInfoLog
  9. {
  10. public string ID { get; set; }
  11. public string TransCode { get; set; }
  12. public string TransSequence { get; set; }
  13. public string LotNo { get; set; }
  14. public string InvCode { get; set; }
  15. public string FromWarehouseCode { get; set; }
  16. public string FromLocationCode { get; set; }
  17. public string ToWarehouseCode { get; set; }
  18. public string ToLocationCode { get; set; }
  19. public decimal? Quantity { get; set; }
  20. public string Memo { get; set; }
  21. public int Lock { get; set; }
  22. public string TransType { get; set; }
  23. public string BusinessCode { get; set; }
  24. public string ERPID { get; set; }
  25. public string ERPDetailID { get; set; }
  26. public string ERPCode { get; set; }
  27. public string ERPSequence { get; set; }
  28. public string MUSER { get; set; }
  29. public string MUSERName { get; set; }
  30. public DateTime? MTIME { get; set; }
  31. public string WorkPoint { get; set; }
  32. }
  33. }