Files
wcs/WCS.Model/ApiModel/PDAProductionLineCallOut/CallInRequest.cs
2025-02-20 17:05:26 +08:00

19 lines
529 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 LocationAreaId { get; set; }
//空货架/非空货架字符串
public string ShelfTypeStr { get; set; }
}
}