using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WMS.Entitys.Dto
|
{
|
public class YmLocationMapDto
|
{
|
public string type { get; set; }
|
|
public string itemCode { get; set; }
|
public string itemArea { get; set; }
|
public string productionLineArea { get; set; }
|
public string productionLine { get; set; }
|
public List<string> location { get; set; }
|
|
public string locationName { get; set; }
|
public string locationCode { get; set; }
|
}
|
}
|