1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.response.hj
- {
- public class ApplyLocRequest
- {
- public long WarehuoseId { get; set; }
- public int Size { get; set; }
- public int TunnelNum { get; set; }
- public long MaterialId { get; set; }
- public string MaterialCode { get; set; }
- public bool IsMove { get; set; } = false;
- public int Floor { get; set; }
- public string CellCode { get; set; }
- public int Fork { get; set; }
- public string Wind { get; set; }
- public bool IsControlpanel { get; set; }
- public bool IsTorsChk { get; set; }
- public int TorsChkQty { get; set; }
- public DateTime ProductTime { get; set; }
- public string Wbgroup { get; set; }
- }
- }
|