ErpUnlockStockResponse.cs 490 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace wms.dto.response.pt
  5. {
  6. public class ErpUnlockStockResponse:SRes
  7. {
  8. public List<ErpUnlockStockResponseItem> ListInfo { get; set; }
  9. }
  10. public class ErpUnlockStockResponseItem
  11. {
  12. public string RFID { get; set; } = "";
  13. public string MatBarCode { get; set; } = "";
  14. public string ResState { get; set; } = "";
  15. public string ResDesc { get; set; } = "";
  16. }
  17. }