using System; using System.Collections.Generic; using System.Text; namespace wms.dto.request.share { public class ApplyFloorRequest:BaseRequest { /// /// 条码 /// public string Code { get; set; } /// /// 扫码设备号 /// public string EquNo { get; set; } /// /// 备用 /// public string? Memo1 { get; set; } /// /// 备用 /// public string? Memo2 { get; set; } } public class ApplyHunrRequest { /// /// 工字轮条码 /// public string SpoolNr { get; set; } } }