Files
wcs/WCS.Model/ApiModel/PDAProductionLineCallOut/CallOutRequest.cs
2025-02-18 19:20:56 +08:00

15 lines
364 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.PDAProductionLineCallIn
{
public class CallOutRequest:RequestBase
{
public int LocationId { get; set; }
public string LocationCode { get; set; }
public int ShelfId { get; set; }
public string ShelfCode { get; set; }
}
}