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

26 lines
760 B

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 ICSWareHouseLotInfo
  9. {
  10. public string ID { get; set; }
  11. public string LotNo { get; set; }
  12. public string WarehouseCode { get; set; }
  13. public string LocationCode { get; set; }
  14. public string InvCode { get; set; }
  15. public decimal? Quantity { get; set; }
  16. public DateTime? InDate { get; set; }
  17. public decimal? LockQuantity { get; set; }
  18. public string MUSER { get; set; }
  19. public string MUSERName { get; set; }
  20. public DateTime? MTIME { get; set; }
  21. public string WorkPoint { get; set; }
  22. }
  23. }