using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace iWare.Wms.Application
|
{
|
public class LocationViewInput
|
{
|
}
|
|
/// <summary>
|
/// 获取库位对应的排
|
/// </summary>
|
public class GetPalceRownoInput
|
{
|
/// <summary>
|
/// 库区ID
|
/// </summary>
|
[Required(ErrorMessage = "库区ID不能为空")]
|
public long Areaid { get; set; }
|
}
|
/// <summary>
|
/// 获取库位列表
|
/// </summary>
|
public class GetPalceListInput
|
{
|
/// <summary>
|
/// 库区ID
|
/// </summary>
|
[Required(ErrorMessage = "库区ID不能为空")]
|
public long Areaid { get; set; }
|
|
/// <summary>
|
/// 排
|
/// </summary>
|
[Required(ErrorMessage = "库区排不能为空")]
|
public int Rowno { get; set; }
|
}
|
/// <summary>
|
/// 获取库位对应的信息
|
/// </summary>
|
public class GetMaterialDetailInput
|
{
|
/// <summary>
|
/// 库位ID
|
/// </summary>
|
[Required(ErrorMessage = "库位ID不能为空")]
|
public long ID { get; set; }
|
}
|
}
|