Files
wcs/WCS.Model/ApiModel/PDAProductionLineCallOut/CallInRequest.cs
hehaibing-1996 025703fe94 1.PDA端送回货架功能完善
2.选择默认区域功能优化(若选择区域索引小于选项值时会界面会跳到空白)
2025-02-26 19:40:17 +08:00

21 lines
633 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAProductionLineCallOut
{
public class CallOutRequest:RequestBase
{
public int LocationId { get; set; }
public string LocationCode { get; set; }
public int ShelfId { get; set; }
public string ShelfCode { get; set; }
//目标区域ID
public int DestinationLocationAreaId { get; set; }
//目标区域名称
public string DestinationLocationAreaName { get; set; }
//空货架/非空货架字符串
public string ShelfTypeStr { get; set; }
}
}