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

15 lines
363 B
C#

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