MobileTaskModels.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334
  1. namespace Admin.NET.Plugin.AiDOP.MaterialWarehouse.InventoryPosting.Receipt;
  2. /// <summary>C7 移动任务命令(写 DOP shadow `ado_inventory_mobile_task`,不写旧 MobileTask)。</summary>
  3. public sealed class MobileTaskCommand
  4. {
  5. public long TenantId { get; set; }
  6. public string DomainCode { get; set; }
  7. public long? PostingId { get; set; }
  8. public string Fbillno { get; set; }
  9. /// <summary>幂等键(InvUpShelf=Receiver / PurOrdRctByMRBChoose=QCNbr)。</summary>
  10. public string TaskId { get; set; }
  11. public string TypeId { get; set; }
  12. public string Name { get; set; }
  13. public string Description { get; set; }
  14. public string Executer { get; set; }
  15. public int ExecuterTypeId { get; set; }
  16. public string Status { get; set; }
  17. public string Receiver { get; set; }
  18. public string RctQcNbr { get; set; }
  19. public string User { get; set; }
  20. }
  21. /// <summary>MRB 挑选(②⑤)任务命令——不进 C5 库存过账,仅创建 PurOrdRctByMRBChoose 任务。</summary>
  22. public sealed class IqcMrbSelectionCommand
  23. {
  24. public long TenantId { get; set; }
  25. public string DomainCode { get; set; }
  26. public long PostingId { get; set; }
  27. public string QcNbr { get; set; }
  28. public string ItemNum { get; set; }
  29. public string Fbillno { get; set; }
  30. public string Receiver { get; set; }
  31. public string User { get; set; }
  32. }