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

31 lines
997 B

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 FormICSITEMTransUIModel : ICSITEMTrans
  8. {
  9. public string ID { get; set; }
  10. public string TransNO { get; set; }
  11. public int TransLine { get; set; }
  12. public string ITEMCODE { get; set; }
  13. public string FRMStorageCODE { get; set; }
  14. public string FRMStackCODE { get; set; }
  15. public string TOStorageCODE { get; set; }
  16. public string TOStackCODE { get; set; }
  17. public decimal TransQTY { get; set; }
  18. public string Memo { get; set; }
  19. public string TransType { get; set; }
  20. public string BusinessCode { get; set; }
  21. public string MUSER { get; set; }
  22. public string MUSERName { get; set; }
  23. public DateTime? MTIME { get; set; }
  24. public string WorkPoint { get; set; }
  25. public FormICSITEMTransLotUIModel Lot { get; set; }
  26. }
  27. }