using System; using System.Collections.Generic; using System.Text; namespace wms.dto.response.pt { public class ErpUnlockStockResponse:SRes { public List 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; } = ""; } }