Files
wcs/WCS.Model/ApiModel/PDAProductionLineCallIn/CallInRequest.cs
2025-02-18 14:34:46 +08:00

15 lines
351 B
C#

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