ErpUnlockStockRequest.cs 590 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.request.pt
  5. {
  6. public class ErpUnlockStockRequest:BaseRequest
  7. {
  8. public string BillCode { get; set; } = "";
  9. public string ReqId { get; set; } = "";
  10. public string WareCode { get; set; } = "";
  11. public List<ErpUnlockStockRequestItem> ListInfo { get; set; }
  12. }
  13. public class ErpUnlockStockRequestItem
  14. {
  15. public string RFID { get; set; } = "";
  16. public string MatBarCode { get; set; } = "";
  17. public string State { get; set; } = "";
  18. }
  19. }