using System.Collections.Generic;
|
|
namespace HH.WCS.SJML.Dto
|
{
|
public class ChangeWayDto
|
{
|
/// <summary>
|
/// 任务号
|
/// </summary>
|
public string S_TASK_NO { get; set; }
|
|
/// <summary>
|
/// 不可用巷道
|
/// </summary>
|
public List<string> N_ROADWAY_NOT { get; set; }
|
|
}
|
|
public class SetChangeDto
|
{
|
public string S_LOC_CODE { get; set; }
|
}
|
}
|