19 lines
529 B
C#
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; }
|
|
}
|
|
}
|