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

32 lines
1.1 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 FormICSINVReceiptUIModel:ICSINVReceipt
  8. {
  9. public string ID { get; set; }
  10. public string ReceiptNO { get; set; }
  11. //库别代码
  12. public string StorageID { get; set; }
  13. public string RECSTATUS { get; set; }
  14. //供应商代码
  15. public string VENDORCODE { get; set; }
  16. public string RECTYPE { get; set; }
  17. public string MEMO { get; set; }
  18. public DateTime? CreateTIME { get; set; }
  19. public string CreateUSER { get; set; }
  20. public string WorkPoint { get; set; }
  21. public string MUSER { get; set; }
  22. public string MUSERName { get; set; }
  23. public DateTime? MTIME { get; set; }
  24. public string EATTRIBUTE1 { get; set; }
  25. //是否所有入库单明细都已入库,Y/N
  26. public string ISALLINSTORAGE { get; set; }
  27. public FormICSStorageUIModel sto { get; set; }
  28. public FormICSVendorUIModel ven { get; set; }
  29. }
  30. }