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; } } }