18 lines
377 B
C#
18 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace WCS.Model.ApiModel.MXBackgroundThread
|
|
{
|
|
public class ElectronicSiloPushRequest
|
|
{
|
|
public string materialCode { get; set; }
|
|
public string warehouseCode { get; set; }
|
|
}
|
|
|
|
public class ElectronicSiloPushDto
|
|
{
|
|
public string materialBar { get; set; }
|
|
}
|
|
}
|