26 lines
557 B
C#
26 lines
557 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.MXBackgroundThread
|
|
{
|
|
public class InputStockInRequest
|
|
{
|
|
public string materialBar { get; set; }
|
|
|
|
public string shelfCode { get; set; }
|
|
|
|
public string shelfX { get; set; }
|
|
|
|
public string shelfY { get; set; }
|
|
|
|
public string shelfZ { get; set; }
|
|
|
|
public string inUser { get; set; } = string.Empty;
|
|
|
|
public string inTime { get; set; }
|
|
|
|
public int warehouseType { get; set; } = 20;
|
|
}
|
|
}
|