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

30 lines
946 B

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. using System.Threading.Tasks;
  6. namespace NFine.Domain._03_Entity.WMS
  7. {
  8. public class ICSInventoryLot
  9. {
  10. public string ID { get; set; }
  11. public string LotNo { get; set; }
  12. public string InvCode { get; set; }
  13. public DateTime? ProductDate { get; set; }
  14. public DateTime? ExpirationDate { get; set; }
  15. public decimal? Quantity { get; set; }
  16. public decimal? Amount { get; set; }
  17. public string ExtensionID { get; set; }
  18. public string Type { get; set; }
  19. public int? PrintTimes { get; set; }
  20. public string LastPrintUser { get; set; }
  21. public DateTime? LastPrintTime { get; set; }
  22. public string MUSER { get; set; }
  23. public string MUSERName { get; set; }
  24. public DateTime? MTIME { get; set; }
  25. public string WorkPoint { get; set; }
  26. }
  27. }