namespace WcsMain.ApiClient.DataEntity.WmsEntity;
///
/// 申请入库
///
public class ApplyInRequest
{
///
/// 申请点位
///
public string? Point { get; set; }
///
/// 载具号
///
public string? VehicleNo { get; set; }
///
/// 条码信息
///
public string? CodeMessage { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
}