123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.response.pt
- {
- public class ErpUnlockStockResponse:SRes
- {
- public List<ErpUnlockStockResponseItem> ListInfo { get; set; }
- }
- public class ErpUnlockStockResponseItem
- {
- public string RFID { get; set; } = "";
- public string MatBarCode { get; set; } = "";
- public string ResState { get; set; } = "";
- public string ResDesc { get; set; } = "";
- }
- }
|